Better error description when there is not possible download application

This commit is contained in:
Bruno Tavares 2014-02-21 18:04:39 -03:00
parent 26e3dac192
commit 7ef54c4f5d

View File

@ -9,7 +9,7 @@ kickstart.download.stream() {
elif [ `which wget` ]; then elif [ `which wget` ]; then
wget -qO - $1 wget -qO - $1
else else
kickstart.info "No download application found" kickstart.info "No download application found, consider installing curl or wget"
exit 1 exit 1
fi fi
} }