aboutsummaryrefslogtreecommitdiff
path: root/tag.sh
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2019-02-19 07:47:12 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2019-02-19 07:47:12 +0200
commit2a2e45eaf65bc984b83a301f6d2569bcf90f1873 (patch)
tree0e73f7a8ea524a3a59baef99e2730899e6f37a42 /tag.sh
parent94f36a21505345d6547eb7634e234d97bf7bebf7 (diff)
Fix tag script to use v<version> notation
Diffstat (limited to 'tag.sh')
-rwxr-xr-xtag.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tag.sh b/tag.sh
index 59f8560..8d4f79c 100755
--- a/tag.sh
+++ b/tag.sh
@@ -16,7 +16,7 @@ fi
for i in $tag_modules; do
echo "tag $i" 1>&2
cd $i
- git tag -a $1 -m "Tag version $1"
+ git tag -a "v$1" -m "Tag version $1"
if [ $? -ne 0 ]; then
echo "tag FAILED" 1>&2