Skip to content

Commit

Permalink
Merge pull request #111 from TNG/fix-git-tag-version-string
Browse files Browse the repository at this point in the history
fix: remove quotes from git tag version string
  • Loading branch information
alexzurbonsen authored Feb 5, 2025
2 parents 0e2956e + 30af523 commit ba11724
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 ba11724

Please sign in to comment.