Skip to content

Commit 2d1cf7a

Browse files
performrelease: fix version tagging convention
Signed-off-by: Rohit Yadav <[email protected]>
1 parent 7c682bf commit 2d1cf7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

performrelease.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,9 @@ if [ "$tag" == "yes" ]; then
115115
echo 'tag'
116116
cd $sourcedir
117117
if [ "$certid" == "X" ]; then
118-
git tag -s $version -m "Tagging release $version on branch $branch."
118+
git tag -s v$version -m "Tagging release $version on branch $branch."
119119
else
120-
git tag -u $certid -s $version -m "Tagging release $version on branch $branch."
120+
git tag -u $certid -s v$version -m "Tagging release $version on branch $branch."
121121
fi
122122
fi
123123

0 commit comments

Comments
 (0)