From 901406e3a0fa25e5c74463ca5453a43bfb5a5a6e Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Wed, 7 Dec 2011 19:09:00 -0600 Subject: Introduce HOMEBREW_CURL_VERBOSE When investigating issues, one might want to see exactly what curl is doing behind the scenes. Setting HOMEBREW_CURL_VERBOSE will cause the '--verbose' flag to be passed to all invocations of curl. Prompted by Homebrew/homebrew#8992. Signed-off-by: Jack Nagel --- Library/Contributions/manpages/brew.1.md | 3 +++ Library/Homebrew/utils.rb | 1 + 2 files changed, 4 insertions(+) (limited to 'Library') diff --git a/Library/Contributions/manpages/brew.1.md b/Library/Contributions/manpages/brew.1.md index db1b37939..cddf08435 100644 --- a/Library/Contributions/manpages/brew.1.md +++ b/Library/Contributions/manpages/brew.1.md @@ -336,6 +336,9 @@ creating your own can be found on the wiki: This can be used to keep downloads out of your home folder, if you have it mounted on an SSD or are using FileVault for instance. + * HOMEBREW\_CURL\_VERBOSE: + If set, Homebrew will pass `--verbose` when invoking `curl`(1). + * HOMEBREW\_DEBUG: If set, instructs Homebrew to always assume `--debug` when running commands. diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index 8eca952de..df23c1387 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -111,6 +111,7 @@ def curl *args args = [HOMEBREW_CURL_ARGS, HOMEBREW_USER_AGENT, *args] # See https://github.com/mxcl/homebrew/issues/6103 args << "--insecure" if MacOS.version < 10.6 + args << "--verbose" if ENV['HOMEBREW_CURL_VERBOSE'] safe_system curl, *args end -- cgit v1.2.3