This is an automated email from the ASF dual-hosted git repository.

danhaywood pushed a commit to branch v3
in repository https://gitbox.apache.org/repos/asf/causeway-app-petclinic.git

commit 4e020fbef00e04815a4200249e69fb814d1d16df
Author: Dan Haywood <[email protected]>
AuthorDate: Tue Nov 18 06:57:31 2025 +0000

    fixes derivation of new tag from old tag
---
 tagger.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tagger.sh b/tagger.sh
index e0e83ee..521c5a3 100755
--- a/tagger.sh
+++ b/tagger.sh
@@ -53,7 +53,7 @@ echo "-x EXECUTE      : $EXECUTE"
 PREV_TAG=""
 for TAG in $(git tag -l | grep "tags/$PREV_VERSION/")
 do
-       NEW_TAG="tags/$NEW_VERSION/$(echo $TAG | cut -c9-)"
+       NEW_TAG="tags/$NEW_VERSION/$(echo $TAG | cut -c12-)"
 
        if [ -n "$PREV_TAG" ]
        then

Reply via email to