Disable curl globbing.

This commit is contained in:
Markus Reiter 2019-10-01 08:38:44 +02:00
parent 5354ba84e6
commit 0a1985d46a

View File

@ -19,6 +19,8 @@ def curl_args(*extra_args, show_output: false, user_agent: :default)
# do not load .curlrc unless requested (must be the first argument)
args << "-q" unless ENV["HOMEBREW_CURLRC"]
args << "--globoff"
args << "--show-error"
args << "--user-agent" << case user_agent