This commit is contained in:
2023-03-15 14:00:48 +01:00
parent 62acddda5e
commit 86c01659d7
3 changed files with 252 additions and 1 deletions

View File

@@ -32,7 +32,13 @@ echo ""
git add --verbose .
git commit -a -m "v${next_ver}"
msg="v${next_ver}"
if [ $# -gt 0 ]; then
msg="$1"
fi
git commit -a -m "${msg}"
git tag "v${next_ver}"