summaryrefslogtreecommitdiff
path: root/maketag.sh
diff options
context:
space:
mode:
Diffstat (limited to 'maketag.sh')
-rwxr-xr-xmaketag.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/maketag.sh b/maketag.sh
deleted file mode 100755
index b91e9fb6..00000000
--- a/maketag.sh
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/bin/bash
-read -p "Please generate CHANGELOG and commit it BEFORE you tag. Press a key when ready..."
-orig=$1
-VER="${orig/v/}"
-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