We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ed306d commit 4029656Copy full SHA for 4029656
scripts/tag.sh
@@ -31,10 +31,10 @@ PACKAGE_DIRS=$(find . -mindepth 2 -type f -name 'go.mod' -exec dirname {} \; \
31
| sed 's/^\.\///' \
32
| sort)
33
34
-git tag ${TAG}
+git tag ${TAG} -m "Version ${TAG}"
35
36
for dir in $PACKAGE_DIRS
37
do
38
printf "tagging ${dir}/${TAG}\n"
39
- git tag ${dir}/${TAG} -a -m "Version ${TAG}"
+ git tag ${dir}/${TAG}
40
done
0 commit comments