From 2a2e45eaf65bc984b83a301f6d2569bcf90f1873 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 19 Feb 2019 07:47:12 +0200 Subject: Fix tag script to use v notation --- tag.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tag.sh') 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 -- cgit v1.1