Skip to content

Commit

Permalink
fix: remove prefix from version bump tool
Browse files Browse the repository at this point in the history
Signed-off-by: Artur Troian <[email protected]>
  • Loading branch information
troian committed Aug 13, 2024
1 parent 31c019b commit 0610b24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion script/tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function run_bump_module() {
oversion=${BASH_REMATCH[0]}

nversion=v$($SEMVER bump "$cmd" "$oversion")
git tag -a "$prefix/$nversion" -m "$prefix/$nversion"
git tag -a "$nversion" -m "$nversion"
else
error "unable to find any tag for module $prefix"
fi
Expand Down

0 comments on commit 0610b24

Please sign in to comment.