Skip to content

Commit 075d758

Browse files
authored
Rollup merge of #64786 - tmandry:patch-1, r=Mark-Simulacrum
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
2 parents db3fc45 + 9bd201c commit 075d758

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ci/docker/dist-x86_64-linux/build-curl.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ source shared.sh
55

66
VERSION=7.51.0
77

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

1010
mkdir curl-build
1111
cd curl-build

0 commit comments

Comments
 (0)