Merge pull request #503 from jonEbird/static-build-script-cleanup

script/build-libgit2-static.sh: correctly set ROOT
This commit is contained in:
lhchavez 2020-02-12 16:57:53 -08:00 committed by GitHub
commit aa802a90db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
set -ex
ROOT="$(cd "$0/../.." && echo "${PWD}")"
ROOT="$(cd "$(dirname "$0")/.." && echo "${PWD}")"
BUILD_PATH="${ROOT}/static-build"
VENDORED_PATH="${ROOT}/vendor/libgit2"