diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-12-13 23:34:17 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2015-12-13 23:35:13 +0100 |
commit | b2904322a242dc2fd42c592901acf37d683899a4 (patch) | |
tree | ba7b6a4aca12f46e93c1e64cdf96b47e00e9fd0a | |
parent | c9c3a63ce7b2d4de898607834fea701f0c3fafdd (diff) |
allow to fetch on redirects
-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 0ccbc589f..7ae1dff1e 100755 --- a/scripts/prereq.sh +++ b/scripts/prereq.sh @@ -49,7 +49,7 @@ for tool in $tools; do printf "found\n" case $tool in curl) - FETCHCMD="$(which $tool) -k -f -s -o " + FETCHCMD="$(which $tool) -L -k -f -s -o " ;; wget) FETCHCMD="$(which $tool) --no-check-certificate -q -O " |