Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2021-03-09 11:53:48 +0000
committerSravan Kumar Lakkimsetti2021-03-09 12:20:42 +0000
commit3bc1d178c2151a90b3a68922b8a1a7b3e84c0121 (patch)
tree324cb6851dd632af5feed1d602d7df87bb640a18
parent5c4d4256729ae088476a9b84fcdfa9c736c5898d (diff)
downloadeclipse.platform.releng.aggregator-3bc1d178c2151a90b3a68922b8a1a7b3e84c0121.tar.gz
eclipse.platform.releng.aggregator-3bc1d178c2151a90b3a68922b8a1a7b3e84c0121.tar.xz
eclipse.platform.releng.aggregator-3bc1d178c2151a90b3a68922b8a1a7b3e84c0121.zip
Bug 571808 - Stop creating build input tags for Y and P builds
Change-Id: I0f530b4e2160af6043dea78be43f8e702eefeb9e Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rwxr-xr-xcje-production/mbscripts/mb110_tagBuildInputs.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/cje-production/mbscripts/mb110_tagBuildInputs.sh b/cje-production/mbscripts/mb110_tagBuildInputs.sh
index 1d2bb3012..ea65c6cff 100755
--- a/cje-production/mbscripts/mb110_tagBuildInputs.sh
+++ b/cje-production/mbscripts/mb110_tagBuildInputs.sh
@@ -1,7 +1,7 @@
#!/bin/bash
#*******************************************************************************
-# Copyright (c) 2019, 2020 IBM Corporation and others.
+# Copyright (c) 2019, 2021 IBM Corporation and others.
#
# This program and the accompanying materials
# are made available under the terms of the Eclipse Public License 2.0
@@ -48,7 +48,7 @@ pushd $CJE_ROOT/$AGG_DIR
# git tagging
git commit -m "Build input for build $BUILD_ID"
-if [[ $? -eq 0 ]]
+if [ $? -eq 0 -a "${BUILD_TYPE}" == "I" ]
then
git push origin HEAD
fi

Back to the top