mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user