Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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