Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-09-19 11:44:27 +0000
committerSravan Kumar Lakkimsetti2017-09-19 12:10:24 +0000
commitdb263bbfad3842b4f09846586d4d9ad465a8c101 (patch)
tree18bb7288397359cc6fb9bb8f98634767758cb1e7
parenta2895d80ce561150da7aa4901d4730dd8229486f (diff)
downloadeclipse.platform.releng.aggregator-db263bbfad3842b4f09846586d4d9ad465a8c101.tar.gz
eclipse.platform.releng.aggregator-db263bbfad3842b4f09846586d4d9ad465a8c101.tar.xz
eclipse.platform.releng.aggregator-db263bbfad3842b4f09846586d4d9ad465a8c101.zip
Bug 522476 - Hide 4.7.1a builds
Change-Id: Ie555f70070afe16c16757798427e0fa92c3cc9fd Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--production/sdk/promotion/syncUpdateUtils.shsource5
1 files changed, 4 insertions, 1 deletions
diff --git a/production/sdk/promotion/syncUpdateUtils.shsource b/production/sdk/promotion/syncUpdateUtils.shsource
index c6226ac22..67c03e0d3 100644
--- a/production/sdk/promotion/syncUpdateUtils.shsource
+++ b/production/sdk/promotion/syncUpdateUtils.shsource
@@ -378,7 +378,7 @@ function setToAndFromAddresses ()
# override 'TO' in localBuildProperties.shsource if doing local tests
# for initial testing, only to me -- change as desired after initial testing.
-if [[ "${buildType}" =~ [PYXU] ]]
+if [[ "${buildType}" =~ [PYXUM] ]]
then
case "${buildType}" in
"P" )
@@ -387,6 +387,9 @@ then
"U" )
export TO=${TO:-"sravankumarl@in.ibm.com,noopur_gupta@in.ibm.com,jdt-ui-dev@eclipse.org"}
export SUBJECT="Branch SDK Build: ${SUBJECT}" ;;
+ "M" )
+ export TO=${TO:-"sravankumarl@in.ibm.com,manpalat@in.ibm.com"}
+ ;;
"Y" )
export TO=${TO:-"sravankumarl@in.ibm.com,jdt-core-dev@eclipse.org"}
export SUBJECT="Branch SDK Build: ${SUBJECT}" ;;

Back to the top