Skip to content

Commit 37f8141

Browse files
committed
cli: use correct git directory for version when installing locally
1 parent 9a73b25 commit 37f8141

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ function main {
4141
# check if there's a package.json in the parent directory, with "name": "@wormhole-foundation/ntt-cli"
4242
if [ -f "$(dirname $0)/package.json" ] && grep -q '"name": "@wormhole-foundation/ntt-cli"' "$(dirname $0)/package.json"; then
4343
path="$(dirname $0)/.."
44-
version=$(git rev-parse HEAD)
45-
dirty=$(git diff --quiet || echo "-dirty")
44+
version=$(git -C "$path" rev-parse HEAD)
45+
dirty=$(git -C "$path" diff --quiet || echo "-dirty")
4646
echo "$version$dirty" > "$HOME/.ntt-cli/version"
4747
else
4848
# if branch is set, use it. otherwise use the latest tag of the form "vX.Y.Z+cli" or the 'cli' branch

0 commit comments

Comments
 (0)