Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-01-24 09:50:41 +0000
committerSravan Kumar Lakkimsetti2017-01-25 07:57:01 +0000
commit842e24df5266b2ee26da9f9615ccf25a29b9a36d (patch)
tree75ffa667c93d7136fa35a78814b42ed046c6ed7a /production
parent3b5d225eaa389cb80a7e310b03dc985b35fdfc70 (diff)
downloadeclipse.platform.releng.aggregator-842e24df5266b2ee26da9f9615ccf25a29b9a36d.tar.gz
eclipse.platform.releng.aggregator-842e24df5266b2ee26da9f9615ccf25a29b9a36d.tar.xz
eclipse.platform.releng.aggregator-842e24df5266b2ee26da9f9615ccf25a29b9a36d.zip
Bug 508503 - Tagging of individual repositories
Change-Id: I24f4b25162c40841af35adf28ac7ea99c4179c73 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'production')
-rwxr-xr-xproduction/sdk/promoteStableRelease/promoteImpl/tagPromotedBuilds.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/production/sdk/promoteStableRelease/promoteImpl/tagPromotedBuilds.sh b/production/sdk/promoteStableRelease/promoteImpl/tagPromotedBuilds.sh
index d09a20df9..9680d4636 100755
--- a/production/sdk/promoteStableRelease/promoteImpl/tagPromotedBuilds.sh
+++ b/production/sdk/promoteStableRelease/promoteImpl/tagPromotedBuilds.sh
@@ -14,14 +14,14 @@
# deferredCompositeAdd script
# TODO: if another build has taken place (such as a PATCH build) we
-# may need to 'pull' aggegator first before we can push our tag
+# may need to 'pull' aggregator first before we can push our tag
echo "#!/usr/bin/env bash" > ${CL_SITE}/deferredTag.sh
echo "# navigate to gitcache aggregator" >> ${CL_SITE}/deferredTag.sh
echo "pushd ${BUILD_ROOT}/${AGGR_LOCATION}" >> ${CL_SITE}/deferredTag.sh
echo "" >> ${CL_SITE}/deferredTag.sh
echo "# DROP_ID == BUILD_ID, which should already exist as tag (for all I and M builds)" >> ${CL_SITE}/deferredTag.sh
-echo "git submodule foreach git tag ${NEW_TAG} ${DROP_ID}" >> ${CL_SITE}/deferredTag.sh
+echo "git submodule foreach git tag -a -m \"${NEW_ANNOTATION}\" ${NEW_TAG} ${DROP_ID}" >> ${CL_SITE}/deferredTag.sh
echo "git tag -a -m \"${NEW_ANNOTATION}\" ${NEW_TAG} ${DROP_ID}" >> ${CL_SITE}/deferredTag.sh
echo "RC=\$?" >> ${CL_SITE}/deferredTag.sh
echo "if [[ \$RC != 0 ]]" >> ${CL_SITE}/deferredTag.sh

Back to the top