From 4503aa1915e3428feab2837c57a7d0a5d49c8e61 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Thu, 2 Jan 2025 22:07:23 +0000 Subject: [PATCH] Fix path --- bump-version.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bump-version.sh b/bump-version.sh index 36e54608..dc8ab9ed 100755 --- a/bump-version.sh +++ b/bump-version.sh @@ -29,7 +29,7 @@ npm version patch cd .. cp plugin/manifest.json manifest.json # for BRAT, otherwise it wouldn't update git add . -TAG=$(node -p "require('./package.json').version") +TAG=$(node -p "require('./plugin/package.json').version") git commit -m "Bump versions to $TAG" echo "Tagging $TAG" git tag -a $TAG -m "Release $TAG"