aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
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