summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2021-02-19 00:26:40 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2021-02-19 00:33:17 +0100
commitebe51b216f729a649992aa7af28439479e4ad21c (patch)
treeded40c961f0ef0253902dd4bc60d260ee87b315d
parentca85453c06143147e63289d3527b0f13c0d825c1 (diff)
wget: only try two times by default
-rwxr-xr-xscripts/prereq.sh2
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