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
This commit is contained in:
Theo Belaire
2014-02-22 16:10:31 -08:00
committed by ash-lshift
parent e7b0aa224a
commit 98f4c55e45

View File

@@ -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