summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDrew Scoggins <anscoggi@microsoft.com>2017-01-19 10:27:22 -0800
committerGitHub <noreply@github.com>2017-01-19 10:27:22 -0800
commit87a93b53c393faeb139dd241ad95ac92f65e67e3 (patch)
tree063bea83d87a66a6f5d153de786be5c084e6543f
parent0d04afc8f5919edcbb371c1e0c4f832f76aed09f (diff)
parentff773e9e2e8c66d7bdc85f826645a0afc0b84c0b (diff)
downloadcoreclr-87a93b53c393faeb139dd241ad95ac92f65e67e3.tar.gz
coreclr-87a93b53c393faeb139dd241ad95ac92f65e67e3.tar.bz2
coreclr-87a93b53c393faeb139dd241ad95ac92f65e67e3.zip
Merge pull request #8997 from DrewScoggins/HttpsFix
Change Http to Https
-rwxr-xr-xtests/scripts/perf-prep.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/scripts/perf-prep.sh b/tests/scripts/perf-prep.sh
index 27e4100bd6..cf857ea7de 100755
--- a/tests/scripts/perf-prep.sh
+++ b/tests/scripts/perf-prep.sh
@@ -59,12 +59,10 @@ python3.5 ./tests/scripts/Microsoft.BenchView.JSONFormat/tools/machinedata.py
# Set up the copies
# Coreclr build containing the tests and mscorlib
-curl http://ci.dot.net/job/$perfBranch/job/master/job/release_windows_nt/lastSuccessfulBuild/artifact/bin/tests/tests.zip -L -o tests.zip
-
+curl https://ci.dot.net/job/$perfBranch/job/master/job/release_windows_nt/lastSuccessfulBuild/artifact/bin/tests/tests.zip -o tests.zip
# Corefx components. We now have full stack builds on all distros we test here, so we can copy straight from CoreFX jobs.
-mkdir corefx
-curl http://ci.dot.net/job/dotnet_corefx/job/master/job/ubuntu14.04_release/lastSuccessfulBuild/artifact/bin/build.tar.gz -L -o ./corefx/build.tar.gz
+curl https://ci.dot.net/job/dotnet_corefx/job/master/job/ubuntu14.04_release/lastSuccessfulBuild/artifact/bin/build.tar.gz -o ./corefx/build.tar.gz
# Unpack the corefx binaries
pushd corefx > /dev/null