Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-06-16 22:14:29 +0000
committerDavid Williams2016-06-16 22:14:29 +0000
commit4533c0a4bd1db8316958d914a6f1e1b41a3d7cd7 (patch)
tree588acf8bc375d975bda8788ec307d049af6b5861 /production/promote-build.sh
parentf3993cc16010ab02baafd87a47378cb6199f4fc6 (diff)
downloadeclipse.platform.releng.aggregator-4533c0a4bd1db8316958d914a6f1e1b41a3d7cd7.tar.gz
eclipse.platform.releng.aggregator-4533c0a4bd1db8316958d914a6f1e1b41a3d7cd7.tar.xz
eclipse.platform.releng.aggregator-4533c0a4bd1db8316958d914a6f1e1b41a3d7cd7.zip
Bug 487044 - Migrate cron jobs to Releng HIPP -fine tuning scripts
Diffstat (limited to 'production/promote-build.sh')
-rwxr-xr-xproduction/promote-build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/production/promote-build.sh b/production/promote-build.sh
index cbe1339d3..50a153377 100755
--- a/production/promote-build.sh
+++ b/production/promote-build.sh
@@ -27,7 +27,7 @@ if [[ -z "${WORKSPACE}" ]]
then
export UTILITIES_HOME=/shared/eclipse
else
- export UTILITIES_HOME=/${WORKSPACE}/utilities/production
+ export UTILITIES_HOME=${WORKSPACE}/utilities/production
fi
TODO: Should we make use of "UTILITIES_HOME" here?
@@ -73,7 +73,7 @@ ptimestamp=$( date +%Y%m%d%H%M )
echo "#!/usr/bin/env bash" > ${queueLocation}/${scriptName}
echo "# promotion script created at $ptimestamp" >> ${queueLocation}/${scriptName}
-echo "${UTILITIES_HOME}/syncDropLocation.sh $STREAM $BUILD_ID $EBUILDER_HASH $BUILD_ENV_FILE" >> ${queueLocation}/${scriptName}
+echo "${UTILITIES_HOME}/sdk/promotion/syncDropLocation.sh $STREAM $BUILD_ID $EBUILDER_HASH $BUILD_ENV_FILE" >> ${queueLocation}/${scriptName}
# we restrict "others" rights for a bit more security or safety from accidents
chmod -v ug=rwx,o-rwx ${queueLocation}/${scriptName}

Back to the top