Fix wget error with gendl

This commit is contained in:
Jaidyn Lev 2019-01-21 16:15:07 -06:00
parent 952a896057
commit 6f3b588671

2
gendl
View File

@ -54,7 +54,7 @@ function download_stdout
output="$(curl $url)"
;;
"wget")
output="$(wget --quiet -O $url)"
output="$(wget --quiet -O- $url)"
;;
esac