Skip to content

Commit 4029656

Browse files
committed
Tweak tag.sh
1 parent 4ed306d commit 4029656

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/tag.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ PACKAGE_DIRS=$(find . -mindepth 2 -type f -name 'go.mod' -exec dirname {} \; \
3131
| sed 's/^\.\///' \
3232
| sort)
3333

34-
git tag ${TAG}
34+
git tag ${TAG} -m "Version ${TAG}"
3535

3636
for dir in $PACKAGE_DIRS
3737
do
3838
printf "tagging ${dir}/${TAG}\n"
39-
git tag ${dir}/${TAG} -a -m "Version ${TAG}"
39+
git tag ${dir}/${TAG}
4040
done

0 commit comments

Comments
 (0)