aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorStefan2013-10-27 17:17:09 +0100
committerAdam Vandenberg2013-10-27 09:48:15 -0700
commit35e6f91359fcbd8c21ab858f640bdf0474b79e33 (patch)
tree9fd3659bfaabc7f4ea569e3bf336e73a841d74c7 /Library
parent7e665e0f692e697d030c3154a00fbe9df1c3db3f (diff)
downloadhomebrew-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.rb4
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