diff options
| author | Stefan | 2013-10-27 17:17:09 +0100 |
|---|---|---|
| committer | Adam Vandenberg | 2013-10-27 09:48:15 -0700 |
| commit | 35e6f91359fcbd8c21ab858f640bdf0474b79e33 (patch) | |
| tree | 9fd3659bfaabc7f4ea569e3bf336e73a841d74c7 /Library | |
| parent | 7e665e0f692e697d030c3154a00fbe9df1c3db3f (diff) | |
| download | homebrew-35e6f91359fcbd8c21ab858f640bdf0474b79e33.tar.bz2 | |
fix build log output
Closes #23669.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/exceptions.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb index 92b1a4177..4204b8ebe 100644 --- a/Library/Homebrew/exceptions.rb +++ b/Library/Homebrew/exceptions.rb @@ -198,8 +198,8 @@ class BuildError < Homebrew::InstallationError puts onoe "#{formula.name} did not build" unless (logs = Dir["#{ENV['HOME']}/Library/Logs/Homebrew/#{formula}/*"]).empty? - print "Logs: " - puts logs.map{|fn| " #{fn}"}.join("\n") + puts "Logs:" + puts logs.map{|fn| " #{fn}"}.join("\n") end end puts |
