Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2013-01-28 01:43:58 +0000
committerDavid Williams2013-01-28 01:44:18 +0000
commit249df74846efce98025df8286ad2b4e30782111f (patch)
treec7deeeac0151361b9b9f551aa49b49fc2e538a4e /scripts
parent3b759a02d49b94a05c114eccd94fffab33a8aa2b (diff)
downloadeclipse.platform.releng.aggregator-249df74846efce98025df8286ad2b4e30782111f.tar.gz
eclipse.platform.releng.aggregator-249df74846efce98025df8286ad2b4e30782111f.tar.xz
eclipse.platform.releng.aggregator-249df74846efce98025df8286ad2b4e30782111f.zip
Bug 399180 - [CBI] restructure aggregator and output directories
Diffstat (limited to 'scripts')
-rw-r--r--scripts/master-build.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/master-build.sh b/scripts/master-build.sh
index a9d3f2e98..d386c238b 100644
--- a/scripts/master-build.sh
+++ b/scripts/master-build.sh
@@ -15,7 +15,7 @@ if [ ! -r "$INITIAL_ENV_FILE" ]; then
exit 1
fi
-SCRIPT_PATH="${BUILD_ROOT}/scripts"
+export SCRIPT_PATH="${BUILD_ROOT}/scripts"
source "${SCRIPT_PATH}/build-functions.sh"
@@ -70,6 +70,7 @@ echo "export MAVEN_BREE=\"${MAVEN_BREE}\"" >>$BUILD_ENV_FILE
echo "export GIT_PUSH=\"${GIT_PUSH}\"" >>$BUILD_ENV_FILE
echo "export LOCAL_REPO=\"${LOCAL_REPO}\"" >>$BUILD_ENV_FILE
echo "export INITIAL_ENV_FILE=\"${INITIAL_ENV_FILE}\"" >>$BUILD_ENV_FILE
+echo "export SCRIPT_PATH=\"${SCRIPT_PATH}\"" >>$BUILD_ENV_FILE
# any value of interest/usefulness can be added to BUILD_ENV_FILE
echo "export BUILD_ENV_FILE=\"${BUILD_ENV_FILE}\"" >>$BUILD_ENV_FILE
echo "export BUILD_ID=\"${BUILD_ID}\"" >>$BUILD_ENV_FILE

Back to the top