From 4029656ad50234d85201e299ea9b90d9a9f8ad56 Mon Sep 17 00:00:00 2001 From: Vladimir Mihailenco Date: Thu, 12 Aug 2021 15:43:44 +0300 Subject: [PATCH] Tweak tag.sh --- scripts/tag.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/tag.sh b/scripts/tag.sh index 6038c813..b5af0e38 100755 --- a/scripts/tag.sh +++ b/scripts/tag.sh @@ -31,10 +31,10 @@ PACKAGE_DIRS=$(find . -mindepth 2 -type f -name 'go.mod' -exec dirname {} \; \ | sed 's/^\.\///' \ | sort) -git tag ${TAG} +git tag ${TAG} -m "Version ${TAG}" for dir in $PACKAGE_DIRS do printf "tagging ${dir}/${TAG}\n" - git tag ${dir}/${TAG} -a -m "Version ${TAG}" + git tag ${dir}/${TAG} done