aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2011-12-07 19:12:35 -0600
committerJack Nagel2011-12-08 21:05:19 -0600
commit70bf920ac1daa9e059c4b3593bd992b74914d260 (patch)
tree84cc5c5c802f2417de70f85db40a0480b83b573d /Library
parent9b4c99292b6f4543fe04db4d85150e6f9f261ca1 (diff)
downloadhomebrew-70bf920ac1daa9e059c4b3593bd992b74914d260.tar.bz2
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 <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/global.rb2
1 files changed, 1 insertions, 1 deletions
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