From 30af5239f0df5c23b21739ba476a4afe3c3dd636 Mon Sep 17 00:00:00 2001 From: Alexander zur Bonsen Date: Wed, 5 Feb 2025 22:17:41 +0100 Subject: [PATCH] fix: remove quotes from git tag version string Signed-off-by: Alexander zur Bonsen --- scripts/publish_release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publish_release.sh b/scripts/publish_release.sh index 93708c5..e6552b0 100755 --- a/scripts/publish_release.sh +++ b/scripts/publish_release.sh @@ -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'