Browse Source

wget: only try two times by default

Waldemar Brodkorb 3 years ago
parent
commit
ebe51b216f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/prereq.sh

+ 1 - 1
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