Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-03-16 10:36:14 +0000
committerSravan Kumar Lakkimsetti2018-03-16 10:38:00 +0000
commit00c351cbe777055b1c456ae4b2e43e65ff2c037e (patch)
treecbab336356f627156f5fc0994ca533abf16c5ad2
parentb115e6e35e37198e4bcce7dab3f6f934cd7607b6 (diff)
downloadeclipse.platform.releng.aggregator-00c351cbe777055b1c456ae4b2e43e65ff2c037e.tar.gz
eclipse.platform.releng.aggregator-00c351cbe777055b1c456ae4b2e43e65ff2c037e.tar.xz
eclipse.platform.releng.aggregator-00c351cbe777055b1c456ae4b2e43e65ff2c037e.zip
Bug 532383 - Modify build scripts to do a hidden build
Change-Id: I41a18c817a0c642edfecf93eeae6e2688289d2ee Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--production/sdk/promotion/syncUpdateUtils.shsource4
1 files changed, 3 insertions, 1 deletions
diff --git a/production/sdk/promotion/syncUpdateUtils.shsource b/production/sdk/promotion/syncUpdateUtils.shsource
index de2892cbc..c9bb8a0f0 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" )
@@ -393,6 +393,8 @@ then
"X" )
export TO=${TO:-"sravankumarl@in.ibm.com"}
export SUBJECT="Experimental Build: ${SUBJECT}" ;;
+ "M" )
+ export TO=${TO:-"sravankumarl@in.ibm.com, akurtako@redhat.com"} ;;
*)
export TO=${TO:-"sravankumarl@in.ibm.com"}
export SUBJECT="Unknown buildType ${buildType}: ${SUBJECT}"

Back to the top