diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2021-02-19 00:26:40 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2021-02-19 00:33:17 +0100 |
commit | ebe51b216f729a649992aa7af28439479e4ad21c (patch) | |
tree | ded40c961f0ef0253902dd4bc60d260ee87b315d /scripts | |
parent | ca85453c06143147e63289d3527b0f13c0d825c1 (diff) |
wget: only try two times by default
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/prereq.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/prereq.sh b/scripts/prereq.sh index b71adaac1..8f42a7c60 100755 --- a/scripts/prereq.sh +++ b/scripts/prereq.sh @@ -54,7 +54,7 @@ for tool in $tools; do FETCHCMD="$(which $tool) --progress-bar -L -k -f -o " ;; wget) - FETCHCMD="$(which $tool) --no-check-certificate -O " + FETCHCMD="$(which $tool) -t2 --no-check-certificate -O " ;; esac break |