aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/utils
diff options
context:
space:
mode:
authorMike McQuaid2017-11-27 11:16:15 +0000
committerGitHub2017-11-27 11:16:15 +0000
commitfb588f2aa771571234d285d1f28a9bf514539f66 (patch)
treec2c95020b07b20aacf445f9e59290ed790c619ec /Library/Homebrew/utils
parente41a0a3b819ff0dcc8d01a70b589288183ec17bf (diff)
parentfb6cf0c3f8cc8e440a9e750878faf13430a1e20a (diff)
downloadbrew-fb588f2aa771571234d285d1f28a9bf514539f66.tar.bz2
Merge pull request #3489 from MikeMcQuaid/env-fixes
More environment filtering fixes
Diffstat (limited to 'Library/Homebrew/utils')
-rw-r--r--Library/Homebrew/utils/curl.rb2
1 files changed, 1 insertions, 1 deletions
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