summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmaketag.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/maketag.sh b/maketag.sh
index 1dbe7a32..62bd55b5 100755
--- a/maketag.sh
+++ b/maketag.sh
@@ -2,6 +2,7 @@
read -p "Please generate CHANGELOG and commit it BEFORE you tag. Press a key when ready..."
orig=$1
VER="${orig/v//}"
-echo "Creating tag:$VER"
+echo "Creating tag:v$VER"
+read -p "Press any key to create the tag or Ctrl-C to break..." -n1
git tag -fa v$VER -m"v$VER"
git push -f --tags