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

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

commit 9d94b99fcbe1916afcd2016944b6b2e129d0357d
Author: Dan Haywood <[email protected]>
AuthorDate: Mon Jun 3 12:44:00 2024 +0100

    updates v3 recreate script
---
 recreate-v3-tags.sh | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/recreate-v3-tags.sh b/recreate-v3-tags.sh
index ba8d8ce..f6e6ac6 100755
--- a/recreate-v3-tags.sh
+++ b/recreate-v3-tags.sh
@@ -57,6 +57,7 @@ then
     if [ "$EXECUTE" = "yes" ]
     then
       git tag -d $TAGV3
+      read -p "continue?"
     fi
 
     if [ "$PUSH" = "yes" ]
@@ -65,6 +66,7 @@ then
       if [ "$EXECUTE" = "yes" ]
       then
         git push origin $TAGV3 --delete
+        read -p "continue?"
       fi
     fi
 
@@ -80,12 +82,14 @@ then
   if [ "$EXECUTE" = "yes" ]
   then
     git merge $TAGV2 --no-edit
+    read -p "continue?"
   fi
 
   echo git tag $TAGV3
   if [ "$EXECUTE" = "yes" ]
   then
     git tag $TAGV3
+    read -p "continue?"
   fi
   PREV=$TAGV2
 else
@@ -102,6 +106,7 @@ do
     if [ "$EXECUTE" = "yes" ]
     then
       git cherry-pick $PREV..$TAGV2
+      read -p "continue?"
     fi
   fi
 
@@ -109,16 +114,17 @@ do
   if [ "$EXECUTE" = "yes" ]
   then
     git merge $TAGV2 --no-edit
+    read -p "continue?"
   fi
 
   echo git tag $TAGV3
   if [ "$EXECUTE" = "yes" ]
   then
     git tag $TAGV3
+    read -p "continue?"
   fi
 
   PREV=$TAGV2
 
-  read -p "continue?"
 done
 

Reply via email to