Make curl silent

This commit is contained in:
Bruno Tavares 2014-02-21 15:12:33 -03:00
parent 0cd91a63a7
commit 0535568078

View File

@ -5,7 +5,7 @@ kickstart.download.file() {
kickstart.download.stream() {
kickstart.info "Downloading $1"
if [ `which curl` ]; then
curl $1
curl -s $1
elif [ `which wget` ]; then
wget -qO - $1
else