Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-04-02 15:07:31 +0000
committerDavid Williams2016-04-02 15:07:31 +0000
commitecf4bc6ae8346c9e010cd690500e81195faa452e (patch)
tree8e7fb8a441dcbd424e45b4050d68b5e39a49c34a /production
parent1223fb126d9d3aecd2f087c948158cb1c22e0ebc (diff)
downloadeclipse.platform.releng.aggregator-ecf4bc6ae8346c9e010cd690500e81195faa452e.tar.gz
eclipse.platform.releng.aggregator-ecf4bc6ae8346c9e010cd690500e81195faa452e.tar.xz
eclipse.platform.releng.aggregator-ecf4bc6ae8346c9e010cd690500e81195faa452e.zip
Bug 490834 - Fix TMP_DIR in "updateTestResults.sh" to ensure writeable.
Diffstat (limited to 'production')
-rwxr-xr-xproduction/testScripts/updateTestResultsPages.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/production/testScripts/updateTestResultsPages.sh b/production/testScripts/updateTestResultsPages.sh
index 78c8d12a4..8f8518445 100755
--- a/production/testScripts/updateTestResultsPages.sh
+++ b/production/testScripts/updateTestResultsPages.sh
@@ -267,7 +267,8 @@ then
XVFB_RUN="xvfb-run"
if [[ ! -w "${TMP_DIR}" ]]
then
- TMP_DIR="${$buildRoot}/tmp/"
+ echo -e "\n\tTMP_DIR not defined, so will create at ${buildRoot}/tmp"
+ TMP_DIR="${buildRoot}/tmp"
mkdir -p "${TMP_DIR}"
fi
XVFB_RUN_ARGS="--error-file ${TMP_DIR}/xvfbErrorFile.txt"

Back to the top