Quiet Curl

Limits unneeded curl output
pull/326/head
djarbz 9 months ago committed by GitHub
parent aa341a91e3
commit 64b51c31a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -19,7 +19,7 @@ download_file() {
if command -v wget &> /dev/null; then
wget $url -O $output
elif command -v curl &> /dev/null; then
curl -L $url -o $output
curl -fsSL $url -o $output
elif command -v busybox &> /dev/null; then
busybox wget -O $output $url
else

Loading…
Cancel
Save