aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Belaire <theobelaire@khanacademy.org>2014-02-22 16:10:31 -0800
committerash-lshift <ash@lshift.net>2014-02-25 09:06:15 +0000
commit98f4c55e456371050a373e077d894d6031395680 (patch)
tree57d6959fef5e177e2ac580af85ce990cafa9d2aa
parente7b0aa224a2a873ad9da05776e26793eb5c882e6 (diff)
downloadrneovim-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.sh2
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