Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2016-03-28 04:07:41 +0000
committerDavid Williams2016-03-28 04:07:41 +0000
commit55b6cedc427439bb3487caf9e48f89b95bdeb47d (patch)
treea6dc64c5cb7a026c7bb6fb3a6f69b7ef4d44482b /production/createReports.sh
parentd629fe5e23b0e6e0d82894e9950fdd1ac62fb661 (diff)
downloadeclipse.platform.releng.aggregator-55b6cedc427439bb3487caf9e48f89b95bdeb47d.tar.gz
eclipse.platform.releng.aggregator-55b6cedc427439bb3487caf9e48f89b95bdeb47d.tar.xz
eclipse.platform.releng.aggregator-55b6cedc427439bb3487caf9e48f89b95bdeb47d.zip
Bug 487044 - Fix some path variables to work from elsewhere.
Diffstat (limited to 'production/createReports.sh')
-rwxr-xr-xproduction/createReports.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/production/createReports.sh b/production/createReports.sh
index d86f1eb5e..2fbc00ee6 100755
--- a/production/createReports.sh
+++ b/production/createReports.sh
@@ -54,10 +54,11 @@ then
fi
# Let's always refetch for now
+# TODO: turned off proxy for now. Ideally would set proper environment variables!
# --no-verbose -quiet
#if [[ ! -F ${TMP_DIR}/${tar_name} ]]
#then
- wget --no-cache -O "${TMP_DIR}/${tar_name}" https://hudson.eclipse.org/cbi/job/cbi.p2repo.analyzers.build/lastSuccessfulBuild/artifact/output/products/${tar_name} 2>&1
+ wget --no-proxy --no-cache -O "${TMP_DIR}/${tar_name}" https://hudson.eclipse.org/cbi/job/cbi.p2repo.analyzers.build/lastSuccessfulBuild/artifact/output/products/${tar_name} 2>&1
#else
# echo "${TMP_DIR}/${tar_name} already existed, not re-fetched"
#fi

Back to the top