From fb6cf0c3f8cc8e440a9e750878faf13430a1e20a Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 27 Nov 2017 10:48:03 +0000 Subject: More environment filtering fixes - Make `brew pull` pass through Git environment variables - Whitelist all `TRAVIS_` variables. --- Library/Homebrew/utils/curl.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library/Homebrew/utils') diff --git a/Library/Homebrew/utils/curl.rb b/Library/Homebrew/utils/curl.rb index 5becf8203..eaa81352c 100644 --- a/Library/Homebrew/utils/curl.rb +++ b/Library/Homebrew/utils/curl.rb @@ -27,7 +27,7 @@ def curl_args(*extra_args, show_output: false, user_agent: :default) args << "--fail" args << "--progress-bar" unless ARGV.verbose? args << "--verbose" if ENV["HOMEBREW_CURL_VERBOSE"] - args << "--silent" if !$stdout.tty? || ENV["HOMEBREW_TRAVIS"] + args << "--silent" if !$stdout.tty? || ENV["TRAVIS"] end args + extra_args -- cgit v1.2.3