aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/utils.rb
diff options
context:
space:
mode:
authorMike McQuaid2013-12-14 18:13:11 +0000
committerMike McQuaid2013-12-14 18:18:35 +0000
commit3c86d2b8ffdcb854c88553c86b7911dfbb9766db (patch)
tree34579ec2c40222d1f235843e9f6de49d5f9ecb66 /Library/Homebrew/utils.rb
parent71cba833abc3491edb4fcee5fa1a4c81fe7c6a49 (diff)
downloadhomebrew-3c86d2b8ffdcb854c88553c86b7911dfbb9766db.tar.bz2
Update docs, comment mxcl/homebrew refs.
Diffstat (limited to 'Library/Homebrew/utils.rb')
-rw-r--r--Library/Homebrew/utils.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb
index 87b91d6b9..75ce62e22 100644
--- a/Library/Homebrew/utils.rb
+++ b/Library/Homebrew/utils.rb
@@ -137,7 +137,7 @@ def curl *args
raise "#{curl} is not executable" unless curl.exist? and curl.executable?
args = [HOMEBREW_CURL_ARGS, HOMEBREW_USER_AGENT, *args]
- # See https://github.com/mxcl/homebrew/issues/6103
+ # See https://github.com/Homebrew/homebrew/issues/6103
args << "--insecure" if MacOS.version < "10.6"
args << "--verbose" if ENV['HOMEBREW_CURL_VERBOSE']
args << "--silent" unless $stdout.tty?