Skip to content

Commit 2185710

Browse files
committed
Use https for curl when building for linux
1 parent 6c2c29c commit 2185710

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

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

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
set -ex
44
source shared.sh
55

6-
VERSION=7.51.0
6+
VERSION=7.66.0
77

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

1012
mkdir curl-build
1113
cd curl-build

0 commit comments

Comments
 (0)