From 93e76835e4ea1b5b058066990abea720084ca470 Mon Sep 17 00:00:00 2001 From: Cem Aksoylar Date: Wed, 22 Dec 2021 22:24:47 -0800 Subject: [PATCH] fix(setup): Use right flags for curl when wget doesn't exist. --- docs/src/templates/setup.sh.mustache | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/templates/setup.sh.mustache b/docs/src/templates/setup.sh.mustache index 54405fae..cec164a2 100644 --- a/docs/src/templates/setup.sh.mustache +++ b/docs/src/templates/setup.sh.mustache @@ -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