Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2018-03-13 14:30:56 +0000
committerSravan Kumar Lakkimsetti2018-03-15 09:57:38 +0000
commit3eb779189cafbf853c61c15aedb98f6fbfea192d (patch)
tree3c002c1e10e328f3826074bb800e282f8663eba9 /production
parent848b0a04decfac2036bf1df1d86802ac82e13d4e (diff)
downloadeclipse.platform.releng.aggregator-3eb779189cafbf853c61c15aedb98f6fbfea192d.tar.gz
eclipse.platform.releng.aggregator-3eb779189cafbf853c61c15aedb98f6fbfea192d.tar.xz
eclipse.platform.releng.aggregator-3eb779189cafbf853c61c15aedb98f6fbfea192d.zip
Bug 532380 - Update branding and build scripts for 4.7.3a release
Change-Id: Ie1932148887d09a683bfc7f0274673b2ca579f46 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'production')
-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 12ae00d75..f83c14aa9 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