diff options
| author | Stefan | 2013-10-27 17:17:09 +0100 | 
|---|---|---|
| committer | Adam Vandenberg | 2013-10-27 09:48:15 -0700 | 
| commit | 0a1df377fb7e807bf2f45f96808a5633a9069455 (patch) | |
| tree | 4fcaa7c7e9a6e46039406070fa9314ec3736d52d /Library/Homebrew/exceptions.rb | |
| parent | ea2dd613a4a821f94b0bc16d10d56d091174ecd8 (diff) | |
| download | brew-0a1df377fb7e807bf2f45f96808a5633a9069455.tar.bz2 | |
fix build log output
Closes Homebrew/homebrew#23669.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Homebrew/exceptions.rb')
| -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  | 
