Skip to content

Commit

Permalink
Rollup merge of rust-lang#64786 - tmandry:patch-1, r=Mark-Simulacrum
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
Centril committed Sep 26, 2019
2 parents db3fc45 + 9bd201c commit 075d758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ci/docker/dist-x86_64-linux/build-curl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source shared.sh

VERSION=7.51.0

curl http://cool.haxx.se/download/curl-$VERSION.tar.bz2 | tar xjf -
curl https://cool.haxx.se/download/curl-$VERSION.tar.bz2 | tar xjf -

mkdir curl-build
cd curl-build
Expand Down

0 comments on commit 075d758

Please sign in to comment.