From 70bf920ac1daa9e059c4b3593bd992b74914d260 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Wed, 7 Dec 2011 19:12:35 -0600 Subject: Ignore $HOME/.curlrc when invoking curl Several issues have been caused by conflicts between the options Homebrew passes to curl and those read from $HOME/.curlrc. Passing '-q' will force curl to ignore settings in that file. Suggested in #9027. Signed-off-by: Jack Nagel --- Library/Homebrew/global.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library') diff --git a/Library/Homebrew/global.rb b/Library/Homebrew/global.rb index ed9e3b08a..bded21143 100644 --- a/Library/Homebrew/global.rb +++ b/Library/Homebrew/global.rb @@ -45,7 +45,7 @@ MACOS_VERSION = /(10\.\d+)(\.\d+)?/.match(MACOS_FULL_VERSION).captures.first.to_ HOMEBREW_USER_AGENT = "Homebrew #{HOMEBREW_VERSION} (Ruby #{RUBY_VERSION}-#{RUBY_PATCHLEVEL}; Mac OS X #{MACOS_FULL_VERSION})" -HOMEBREW_CURL_ARGS = '-f#LA' +HOMEBREW_CURL_ARGS = '-qf#LA' RECOMMENDED_LLVM = 2326 RECOMMENDED_GCC_40 = (MACOS_VERSION >= 10.6) ? 5494 : 5493 -- cgit v1.2.3