Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2017-09-19 12:08:21 +0000
committerSravan Kumar Lakkimsetti2017-09-19 12:12:39 +0000
commit5a6a685ec54a775ed8d8a0e3ca27057412742a44 (patch)
tree299d339b0820a49c2865844e596f2ac5ed58d981
parentdb263bbfad3842b4f09846586d4d9ad465a8c101 (diff)
downloadeclipse.platform.releng.aggregator-5a6a685ec54a775ed8d8a0e3ca27057412742a44.tar.gz
eclipse.platform.releng.aggregator-5a6a685ec54a775ed8d8a0e3ca27057412742a44.tar.xz
eclipse.platform.releng.aggregator-5a6a685ec54a775ed8d8a0e3ca27057412742a44.zip
Bug 522440 - Update branding and build scripts for 4.7.1a release
Conflicts: eclipse.platform.releng.tychoeclipsebuilder/eclipse/publishingFiles/templateFiles/index.template_R4_7_maintenance.php Change-Id: I373f957a7f64e70c693c08696a1427e0fc8d106d
-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 e1a36f14c..17c44d4d4 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