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 d3a5586b5de95b028b2b2a76ab45fb459000a42a Author: Dan Haywood <[email protected]> AuthorDate: Wed Nov 19 06:24:07 2025 +0000 comments only --- tagger.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tagger.sh b/tagger.sh index 1d4259f..99e3b2a 100755 --- a/tagger.sh +++ b/tagger.sh @@ -67,7 +67,6 @@ update_poms_and_commit_if_necessary() { local new="$2" local exec="$3" - echo "update all poms to $new and commit if changed..." if [ "$exec" = "true" ] then for POM_XML in $(find . -name "pom.xml") @@ -94,6 +93,7 @@ do then git reset --hard $PREV_VERSION fi + echo "update all poms to $new and commit if changed..." update_poms_and_commit_if_necessary "$PREV_VERSION" "$NEW_VERSION" "$EXECUTE" else for COMMIT in $(git log $PREV_TAG..$TAG --pretty=format:"%H" --reverse) @@ -111,6 +111,7 @@ do fi fi + # this is probably a no-op because we do the update on the first tag. update_poms_and_commit_if_necessary "$PREV_VERSION" "$NEW_VERSION" "$EXECUTE" done fi
