Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2019-06-13 05:04:40 +0000
committerSravan Kumar Lakkimsetti2019-06-13 05:04:40 +0000
commit26252ca9df546aa3270ba401050498dc3e178488 (patch)
treea12d329ee2c93e1905297d1433890475af2c8130 /cje-production
parente4d5b06aa616dc171f95c8ba0b0b8ad8c81cad01 (diff)
downloadeclipse.platform.releng.aggregator-26252ca9df546aa3270ba401050498dc3e178488.tar.gz
eclipse.platform.releng.aggregator-26252ca9df546aa3270ba401050498dc3e178488.tar.xz
eclipse.platform.releng.aggregator-26252ca9df546aa3270ba401050498dc3e178488.zip
Bug 548172 - Integrate new build scripts developed in bug 541301
Change-Id: Ib53476e3e0db759e4da9a5f3228a4eba0aa0d5c7 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
Diffstat (limited to 'cje-production')
-rwxr-xr-xcje-production/mbscripts/mb030_downloadBuildToCompare.sh10
-rwxr-xr-xcje-production/mbscripts/mb220_buildSdkPatch.sh2
2 files changed, 8 insertions, 4 deletions
diff --git a/cje-production/mbscripts/mb030_downloadBuildToCompare.sh b/cje-production/mbscripts/mb030_downloadBuildToCompare.sh
index 1c65917d5..848feacac 100755
--- a/cje-production/mbscripts/mb030_downloadBuildToCompare.sh
+++ b/cje-production/mbscripts/mb030_downloadBuildToCompare.sh
@@ -22,6 +22,10 @@ fi
source $CJE_ROOT/scripts/common-functions.shsource
source $1
-pushd $CJE_ROOT/$TMP_DIR
-wget --recursive --no-parent --no-verbose http://$BUILD_TO_COMPARE_SITE/$PREVIOUS_RELEASE_VER/$PREVIOUS_RELEASE_ID &
-popd
+if [[ -z "${WORKSPACE}" ]]
+then
+ pushd $CJE_ROOT/$TMP_DIR
+ wget --recursive --no-parent --no-verbose http://$BUILD_TO_COMPARE_SITE/$PREVIOUS_RELEASE_VER/$PREVIOUS_RELEASE_ID &
+ popd
+fi
+
diff --git a/cje-production/mbscripts/mb220_buildSdkPatch.sh b/cje-production/mbscripts/mb220_buildSdkPatch.sh
index 9312629e3..c7ad10819 100755
--- a/cje-production/mbscripts/mb220_buildSdkPatch.sh
+++ b/cje-production/mbscripts/mb220_buildSdkPatch.sh
@@ -26,7 +26,7 @@ if [[ -z "${WORKSPACE}" ]]
then
MVN_ARGS=""
else
- MVN_ARGS="-Pbree-libs -Psign"
+ MVN_ARGS="-Pbree-libs -Peclipse-sign"
fi
cd $CJE_ROOT/gitCache/eclipse.platform.releng.aggregator

Back to the top