File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Expand file tree Collapse file tree 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
1515download_ndk () {
1616 mkdir -p /android/ndk
1717 cd /android/ndk
18- curl -sO $URL /$1
18+ curl -fO $URL /$1
1919 unzip -q $1
2020 rm $1
2121 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
1515download_sdk () {
1616 mkdir -p /android/sdk
1717 cd /android/sdk
18- curl -sO $URL /$1
18+ curl -fO $URL /$1
1919 unzip -q $1
2020 rm -rf $1
2121}
Original file line number Diff line number Diff line change 1111set -ex
1212
1313url=" 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 -
1515cd crosstool-ng
1616./configure --prefix=/usr/local
1717make -j$( nproc)
Original file line number Diff line number Diff line change 1010
1111set -ex
1212
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
1414dpkg -i dumb-init_* .deb
1515rm dumb-init_* .deb
Original file line number Diff line number Diff line change 2828}
2929
3030# 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 | \
3232 jq ' .build | tonumber' )
3333curl -sL https://storage.googleapis.com/wasm-llvm/builds/linux/$BUILD /wasm-binaries.tbz2 | \
3434 hide_output tar xvkj
Original file line number Diff line number Diff line change 2828}
2929
3030cd /
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 | \
3232 tar -xz
3333
3434cd /emsdk-portable
Original file line number Diff line number Diff line change 1010
1111set -ex
1212
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 -
1414cd make-3.81
1515./configure --prefix=/usr
1616make
Original file line number Diff line number Diff line change 1010
1111set -ex
1212
13- curl -so /usr/local/bin/sccache \
13+ curl -fo /usr/local/bin/sccache \
1414 https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-05-12-sccache-x86_64-unknown-linux-musl
1515
1616chmod +x /usr/local/bin/sccache
You can’t perform that action at this time.
0 commit comments