Don't use -nv option of wget

This commit is contained in:
Timothy Redaelli 2015-06-27 02:13:40 +02:00
parent a3f1a249db
commit c4966d3684

View file

@ -21,7 +21,7 @@ set -e
# Gathering informations about actual environment.
if which wget >/dev/null 2>&1; then
alias download='wget -nv -O-'
alias download='wget -O-'
elif which curl >/dev/null 2>&1; then
alias download='curl -fL'
else