fix arguments to curl

pull/117/merge
nightwing 2015-05-30 01:36:56 +04:00
rodzic 36795ae03f
commit 281925be9e
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -6,10 +6,10 @@ has() {
return $?
}
if has "wget"; then
DOWNLOAD="wget --no-check-certificate -nc"
elif has "curl"; then
DOWNLOAD="curl -sSOL"
if has "curl"; then
DOWNLOAD="curl -L "
elif has "wget"; then
DOWNLOAD="wget -O - "
else
echo "Error: you need curl or wget to proceed" >&2;
exit 1