From c98c71ae64da652f1c46cc7714ef6b955c0fb90b Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Wed, 1 Aug 2018 11:15:42 +0200 Subject: [PATCH] Show `stdout` for `curl` commands. --- Library/Homebrew/utils/curl.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/utils/curl.rb b/Library/Homebrew/utils/curl.rb index 7f0d08b364..20608b6fc7 100644 --- a/Library/Homebrew/utils/curl.rb +++ b/Library/Homebrew/utils/curl.rb @@ -42,6 +42,7 @@ def curl(*args) # with SSL downloads so unset it here. system_command! curl_executable, args: curl_args(*args), + print_stdout: true, env: { "SSL_CERT_FILE" => nil } end