fix(setup): Use right flags for curl when wget doesn't exist.
This commit is contained in:
parent
ef0d088cb8
commit
93e76835e4
1 changed files with 1 additions and 1 deletions
|
@ -54,7 +54,7 @@ if [[ $curl_exists == "true" && $wget_exists == "true" ]]; then
|
|||
download_command="curl -fsOL "
|
||||
fi
|
||||
elif [[ $curl_exists == "true" ]]; then
|
||||
download_command="curl -O "
|
||||
download_command="curl -fsOL "
|
||||
elif [[ $wget_exists == "true" ]]; then
|
||||
download_command="wget "
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue