From 0a1985d46a2c5665006378527da1420a26b07a5c Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Tue, 1 Oct 2019 08:38:44 +0200 Subject: [PATCH] Disable `curl` globbing. --- Library/Homebrew/utils/curl.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Library/Homebrew/utils/curl.rb b/Library/Homebrew/utils/curl.rb index 21cd492dbc..3c2118196a 100644 --- a/Library/Homebrew/utils/curl.rb +++ b/Library/Homebrew/utils/curl.rb @@ -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