Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-03-13 14:30:56 +0000
committerSravan Kumar Lakkimsetti2018-03-15 10:08:44 +0000
commite20104592f1309a1e9bc186e85a03e0a5cb02b95 (patch)
tree431e1b518c8c7b55dfbacb2fd9f2be5748a705f1
parent24813cae3685a46271ade66b8295dc25484a1d97 (diff)
downloadeclipse.platform.releng.aggregator-e20104592f1309a1e9bc186e85a03e0a5cb02b95.tar.gz
eclipse.platform.releng.aggregator-e20104592f1309a1e9bc186e85a03e0a5cb02b95.tar.xz
eclipse.platform.releng.aggregator-e20104592f1309a1e9bc186e85a03e0a5cb02b95.zip
Bug 532380 - Update branding and build scripts for 4.7.3a release
Conflicts: production/sdk/promotion/syncDropLocation.sh Change-Id: Ie1932148887d09a683bfc7f0274673b2ca579f46 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rwxr-xr-xproduction/sdk/promotion/syncDropLocation.sh7
1 files changed, 6 insertions, 1 deletions
diff --git a/production/sdk/promotion/syncDropLocation.sh b/production/sdk/promotion/syncDropLocation.sh
index 16fcce869..1d16c1948 100755
--- a/production/sdk/promotion/syncDropLocation.sh
+++ b/production/sdk/promotion/syncDropLocation.sh
@@ -103,7 +103,12 @@ function sendPromoteMail ()
fi
# 4.3.0 Build: I20120411-2034
- SUBJECT="${eclipseStream} ${buildType}-Build: ${buildId} $EXTRA_SUBJECT_STRING"
+ if [[ "${buildType}" == "M" ]]
+ then
+ SUBJECT="${eclipseStream}a ${buildType}-Build: ${buildId} $EXTRA_SUBJECT_STRING"
+ else
+ SUBJECT="${eclipseStream} ${buildType}-Build: ${buildId} $EXTRA_SUBJECT_STRING"
+ fi
setToAndFromAddresses

Back to the top