Merge pull request #11754 from briancain/fixup/set-proper-root-dir-for-sync

Set proper root dir path for sync script
This commit is contained in:
Brian Cain 2020-07-08 14:33:23 -07:00 committed by GitHub
commit 34747cafd6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,7 @@
csource="${BASH_SOURCE[0]}"
while [ -h "$csource" ] ; do csource="$(readlink "$csource")"; done
root="$( cd -P "$( dirname "$csource" )/../../" && pwd )"
root="$( cd -P "$( dirname "$csource" )/../" && pwd )"
. "${root}/.ci/common.sh"