diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-02-19 07:47:12 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-02-19 07:47:12 +0200 |
commit | 2a2e45eaf65bc984b83a301f6d2569bcf90f1873 (patch) | |
tree | 0e73f7a8ea524a3a59baef99e2730899e6f37a42 | |
parent | 94f36a21505345d6547eb7634e234d97bf7bebf7 (diff) |
Fix tag script to use v<version> notation
-rwxr-xr-x | tag.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |