We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a73b25 commit 37f8141Copy full SHA for 37f8141
cli/install.sh
@@ -41,8 +41,8 @@ function main {
41
# check if there's a package.json in the parent directory, with "name": "@wormhole-foundation/ntt-cli"
42
if [ -f "$(dirname $0)/package.json" ] && grep -q '"name": "@wormhole-foundation/ntt-cli"' "$(dirname $0)/package.json"; then
43
path="$(dirname $0)/.."
44
- version=$(git rev-parse HEAD)
45
- dirty=$(git diff --quiet || echo "-dirty")
+ version=$(git -C "$path" rev-parse HEAD)
+ dirty=$(git -C "$path" diff --quiet || echo "-dirty")
46
echo "$version$dirty" > "$HOME/.ntt-cli/version"
47
else
48
# 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