diff options
author | Theo Belaire <theobelaire@khanacademy.org> | 2014-02-22 16:10:31 -0800 |
---|---|---|
committer | ash-lshift <ash@lshift.net> | 2014-02-25 09:06:15 +0000 |
commit | 98f4c55e456371050a373e077d894d6031395680 (patch) | |
tree | 57d6959fef5e177e2ac580af85ce990cafa9d2aa | |
parent | e7b0aa224a2a873ad9da05776e26793eb5c882e6 (diff) | |
download | rneovim-98f4c55e456371050a373e077d894d6031395680.tar.gz rneovim-98f4c55e456371050a373e077d894d6031395680.tar.bz2 rneovim-98f4c55e456371050a373e077d894d6031395680.zip |
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
-rw-r--r-- | scripts/common.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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 |