diff --git a/cli/install.sh b/cli/install.sh index f545df203..5e1ef217c 100755 --- a/cli/install.sh +++ b/cli/install.sh @@ -106,7 +106,7 @@ function select_branch { branch="" regex="refs/tags/v[0-9]*\.[0-9]*\.[0-9]*+cli" if git ls-remote --tags "$REPO" | grep -q "$regex"; then - branch="$(git ls-remote --tags "$REPO" | grep "$regex" | sort -V | tail -n 1 | awk '{print $2}')" + branch="$(git ls-remote --tags "$REPO" | grep "$regex" | awk '{print $2}' | sort -V | tail -n 1)" else # otherwise error echo "No tag of the form vX.Y.Z+cli found" >&2 diff --git a/cli/package.json b/cli/package.json index 5e964cd76..4a5f4bf24 100644 --- a/cli/package.json +++ b/cli/package.json @@ -1,6 +1,6 @@ { "name": "@wormhole-foundation/ntt-cli", - "version": "0.5.0", + "version": "1.0.2-beta", "module": "src/index.ts", "type": "module", "devDependencies": {