From 98f4c55e456371050a373e077d894d6031395680 Mon Sep 17 00:00:00 2001 From: Theo Belaire Date: Sat, 22 Feb 2014 16:10:31 -0800 Subject: Silenced wget's progress bar This way it won't show up in travis-ci like: 0% [ ] 0 --.-K/s 100%[======================================>] 371,453 --.-K/s --- scripts/common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/common.sh b/scripts/common.sh index eb2d05c48c..0317f02725 100644 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -26,7 +26,7 @@ download() { local download_command="" if which wget > /dev/null 2>&1; then # -O - to send output to stdout - download_command="wget $url -O -" + download_command="wget --no-verbose $url -O -" elif which curl >/dev/null 2>&1; then # -L to follow the redirects that github will send us # -sS to supress the progress bar, but show errors -- cgit