diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-03-17 04:03:05 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-03-19 19:48:08 +0100 |
commit | 45158aa939462ab7a1bdcf1c825d4aa2f01f41c8 (patch) | |
tree | 3bc67ea7a91033ef4809ffdeca8fc5513725cc06 | |
parent | 9e65605e27d269b03863059f3fdd794182e7b96c (diff) |
prereq: fix issue on Darwin
-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 842796a8f..195acd2be 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) -L -k -f -\# -o " + FETCHCMD="$(which $tool) --progress-bar -L -k -f -o " ;; wget) FETCHCMD="$(which $tool) --no-check-certificate -O " |