Skip to content

Commit 529146e

Browse files
btashtonxiaoxiang781216
authored andcommitted
Run wget in quite mode
Signed-off-by: Brennan Ashton <bashton@brennanashton.com>
1 parent 8e4764f commit 529146e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cibuild.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ function gperf {
112112

113113
if [ ! -f "$prebuilt/gperf/bin/gperf" ]; then
114114
cd $prebuilt
115-
wget http://ftp.gnu.org/pub/gnu/gperf/gperf-3.1.tar.gz
115+
wget --quiet http://ftp.gnu.org/pub/gnu/gperf/gperf-3.1.tar.gz
116116
tar zxf gperf-3.1.tar.gz
117117
cd $prebuilt/gperf-3.1
118118
./configure --prefix=$prebuilt/gperf; make; make install
@@ -151,7 +151,7 @@ function arm-gcc-toolchain {
151151
;;
152152
esac
153153
cd $prebuilt
154-
wget https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-${flavor}.tar.bz2
154+
wget --quiet https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-${flavor}.tar.bz2
155155
tar jxf gcc-arm-none-eabi-9-2019-q4-major-${flavor}.tar.bz2
156156
mv gcc-arm-none-eabi-9-2019-q4-major gcc-arm-none-eabi
157157
rm gcc-arm-none-eabi-9-2019-q4-major-${flavor}.tar.bz2
@@ -183,7 +183,7 @@ function riscv-gcc-toolchain {
183183
;;
184184
esac
185185
cd $prebuilt
186-
wget https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-${flavor}.tar.gz
186+
wget --quiet https://static.dev.sifive.com/dev-tools/riscv64-unknown-elf-gcc-8.3.0-2019.08.0-${flavor}.tar.gz
187187
tar zxf riscv64-unknown-elf-gcc-8.3.0-2019.08.0-${flavor}.tar.gz
188188
mv riscv64-unknown-elf-gcc-8.3.0-2019.08.0-${flavor} riscv64-unknown-elf-gcc
189189
rm riscv64-unknown-elf-gcc-8.3.0-2019.08.0-${flavor}.tar.gz
@@ -198,12 +198,12 @@ function xtensa-esp32-gcc-toolchain {
198198
cd $prebuilt
199199
case $os in
200200
Darwin)
201-
wget https://dl.espressif.com/dl/xtensa-esp32-elf-gcc8_2_0-esp-2019r2-macos.tar.gz
201+
wget --quiet https://dl.espressif.com/dl/xtensa-esp32-elf-gcc8_2_0-esp-2019r2-macos.tar.gz
202202
tar xzf xtensa-esp32-elf-gcc8_2_0-esp-2019r2-macos.tar.gz
203203
rm xtensa-esp32-elf-gcc8_2_0-esp-2019r2-macos.tar.gz
204204
;;
205205
Linux)
206-
wget https://dl.espressif.com/dl/xtensa-esp32-elf-gcc8_2_0-esp32-2019r1-rc2-linux-amd64.tar.xz
206+
wget --quiet https://dl.espressif.com/dl/xtensa-esp32-elf-gcc8_2_0-esp32-2019r1-rc2-linux-amd64.tar.xz
207207
xz -d xtensa-esp32-elf-gcc8_2_0-esp32-2019r1-rc2-linux-amd64.tar.xz
208208
tar xf xtensa-esp32-elf-gcc8_2_0-esp32-2019r1-rc2-linux-amd64.tar
209209
rm xtensa-esp32-elf-gcc8_2_0-esp32-2019r1-rc2-linux-amd64.tar
@@ -219,7 +219,7 @@ function c-cache {
219219

220220
if [ ! -f "$prebuilt/ccache/bin/ccache" ]; then
221221
cd $prebuilt;
222-
wget https://github.com/ccache/ccache/releases/download/v3.7.7/ccache-3.7.7.tar.gz
222+
wget --quiet https://github.com/ccache/ccache/releases/download/v3.7.7/ccache-3.7.7.tar.gz
223223
tar zxf ccache-3.7.7.tar.gz
224224
cd ccache-3.7.7; ./configure --prefix=$prebuilt/ccache; make; make install
225225
cd $prebuilt; rm -rf ccache-3.7.7; rm ccache-3.7.7.tar.gz

0 commit comments

Comments
 (0)