Skip to content
Snippets Groups Projects
Unverified Commit 6453c81d authored by Misty De Meo's avatar Misty De Meo
Browse files

vendor-install: fix array syntax for old bash

parent b8fee7fe
No related branches found
No related tags found
No related merge requests found
......@@ -39,10 +39,10 @@ fetch() {
if [[ -n "$HOMEBREW_QUIET" ]]
then
curl_args+=(--silent)
curl_args[${#curl_args[*]}]="--silent"
elif [[ -z "$HOMEBREW_VERBOSE" ]]
then
curl_args+=(--progress-bar)
curl_args[${#curl_args[*]}]="--progress-bar"
fi
temporary_path="$CACHED_LOCATION.incomplete"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment