diff options
| author | Xu Cheng | 2015-09-24 16:42:32 +0800 | 
|---|---|---|
| committer | Xu Cheng | 2015-09-24 16:44:39 +0800 | 
| commit | c3813230c1f3d7989718da1b5f369ef069c45939 (patch) | |
| tree | ee65b25a8149d3d642c7c968c1c9a6fdf6fe1e9c /Library/Homebrew/formula.rb | |
| parent | 711e079901ca8cb1b06691ef3fe3e210b6442662 (diff) | |
| download | brew-c3813230c1f3d7989718da1b5f369ef069c45939.tar.bz2 | |
Formula#system: fix log output for travis
Diffstat (limited to 'Library/Homebrew/formula.rb')
| -rw-r--r-- | Library/Homebrew/formula.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb index ef76eb023..d6ed61183 100644 --- a/Library/Homebrew/formula.rb +++ b/Library/Homebrew/formula.rb @@ -1324,7 +1324,7 @@ class Formula          log_lines ||= "15"          log.flush -        unless verbose +        if !verbose || verbose_using_dots            puts "Last #{log_lines} lines from #{logfn}:"            Kernel.system "/usr/bin/tail", "-n", log_lines, logfn          end  | 
