Skip to content

Commit

Permalink
fix: remove quotes from git tag version string
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander zur Bonsen <[email protected]>
  • Loading branch information
alexzurbonsen committed Feb 5, 2025
1 parent 0e2956e commit 30af523
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/publish_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ fi
# publishing requires an NPM access token, that is stored in an
# environment variable with the same name as the one required in .npmrc
NPM_ACCESS_TOKEN="$1"
VERSION=$(npm pkg get version)
VERSION=$(npm pkg get version | jq -r)

# for prettier printing
VIOLET='\033[0;35m'
Expand Down

0 comments on commit 30af523

Please sign in to comment.