Skip to content

Commit

Permalink
Auto merge of #64786 - tmandry:patch-1, r=<try>
Browse files Browse the repository at this point in the history
Use https for curl when building for linux

I noticed that the dist-x86_64-linux builder uses http to fetch curl and doesn't do any signature verification. It should probably use https.

r? @alexcrichton @Mark-Simulacrum
  • Loading branch information
bors committed Sep 28, 2019
2 parents 488381c + 80b4c2f commit fa0c44b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ci/docker/dist-x86_64-linux/build-curl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
set -ex
source shared.sh

VERSION=7.51.0
VERSION=7.66.0

curl http://cool.haxx.se/download/curl-$VERSION.tar.bz2 | tar xjf -
curl https://rust-lang-ci-mirrors.s3-us-west-1.amazonaws.com/rustc/curl-$VERSION.tar.xz | xz --decompress | tar xf -

mkdir curl-build
cd curl-build
Expand Down

0 comments on commit fa0c44b

Please sign in to comment.