diff options
| author | Mike McQuaid | 2018-01-04 08:28:34 +0000 |
|---|---|---|
| committer | GitHub | 2018-01-04 08:28:34 +0000 |
| commit | 069b61029b397b73ead0efe9d4ab4cbb17adf359 (patch) | |
| tree | 8759a02b868d042dac934fa62b52054ee543face /Library | |
| parent | b9cb6ccca82a7b8d26cdd0f665c730a6024b78aa (diff) | |
| parent | 841dae4b8c2fe7ca0eab2064e113b8286b61434c (diff) | |
| download | brew-069b61029b397b73ead0efe9d4ab4cbb17adf359.tar.bz2 | |
Merge pull request #3627 from sjackman/circleci
pathname: Use CI env variable rather than TRAVIS
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/extend/pathname.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/extend/pathname.rb b/Library/Homebrew/extend/pathname.rb index 32d57c1c4..8e10971e1 100644 --- a/Library/Homebrew/extend/pathname.rb +++ b/Library/Homebrew/extend/pathname.rb @@ -499,7 +499,7 @@ module ObserverPathnameExtension MAXIMUM_VERBOSE_OUTPUT = 100 def verbose? - return ARGV.verbose? unless ENV["TRAVIS"] + return ARGV.verbose? unless ENV["CI"] return false unless ARGV.verbose? if total < MAXIMUM_VERBOSE_OUTPUT |
