File tree 8 files changed +8
-8
lines changed
8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ URL=https://dl.google.com/android/repository
15
15
download_ndk () {
16
16
mkdir -p /android/ndk
17
17
cd /android/ndk
18
- curl -sO $URL /$1
18
+ curl -fO $URL /$1
19
19
unzip -q $1
20
20
rm $1
21
21
mv android-ndk-* ndk
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ URL=https://dl.google.com/android/repository
15
15
download_sdk () {
16
16
mkdir -p /android/sdk
17
17
cd /android/sdk
18
- curl -sO $URL /$1
18
+ curl -fO $URL /$1
19
19
unzip -q $1
20
20
rm -rf $1
21
21
}
Original file line number Diff line number Diff line change 11
11
set -ex
12
12
13
13
url=" http://crosstool-ng.org/download/crosstool-ng/crosstool-ng-1.22.0.tar.bz2"
14
- curl -s $url | tar xjf -
14
+ curl -f $url | tar xjf -
15
15
cd crosstool-ng
16
16
./configure --prefix=/usr/local
17
17
make -j$( nproc)
Original file line number Diff line number Diff line change 10
10
11
11
set -ex
12
12
13
- curl -sOL https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64.deb
13
+ curl -fOL https://github.com/Yelp/dumb-init/releases/download/v1.2.0/dumb-init_1.2.0_amd64.deb
14
14
dpkg -i dumb-init_* .deb
15
15
rm dumb-init_* .deb
Original file line number Diff line number Diff line change 28
28
}
29
29
30
30
# Download last known good emscripten from WebAssembly waterfall
31
- BUILD=$( curl -sL https://storage.googleapis.com/wasm-llvm/builds/linux/lkgr.json | \
31
+ BUILD=$( curl -fL https://storage.googleapis.com/wasm-llvm/builds/linux/lkgr.json | \
32
32
jq ' .build | tonumber' )
33
33
curl -sL https://storage.googleapis.com/wasm-llvm/builds/linux/$BUILD /wasm-binaries.tbz2 | \
34
34
hide_output tar xvkj
Original file line number Diff line number Diff line change 28
28
}
29
29
30
30
cd /
31
- curl -sL https://s3.amazonaws.com/mozilla-games/emscripten/releases/emsdk-portable.tar.gz | \
31
+ curl -fL https://s3.amazonaws.com/mozilla-games/emscripten/releases/emsdk-portable.tar.gz | \
32
32
tar -xz
33
33
34
34
cd /emsdk-portable
Original file line number Diff line number Diff line change 10
10
11
11
set -ex
12
12
13
- curl -s https://ftp.gnu.org/gnu/make/make-3.81.tar.gz | tar xzf -
13
+ curl -f https://ftp.gnu.org/gnu/make/make-3.81.tar.gz | tar xzf -
14
14
cd make-3.81
15
15
./configure --prefix=/usr
16
16
make
Original file line number Diff line number Diff line change 10
10
11
11
set -ex
12
12
13
- curl -so /usr/local/bin/sccache \
13
+ curl -fo /usr/local/bin/sccache \
14
14
https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-05-12-sccache-x86_64-unknown-linux-musl
15
15
16
16
chmod +x /usr/local/bin/sccache
You can’t perform that action at this time.
0 commit comments