Stop hiding exceptions completely in brew test

This commit is contained in:
Jack Nagel 2014-06-18 23:27:19 -05:00
parent 2122620d71
commit 2afad083ee

View File

@ -53,8 +53,9 @@ module Homebrew extend self
rescue FailedAssertion => e
ofail "#{f.name}: failed"
puts e.message
rescue Exception
rescue Exception => e
ofail "#{f.name}: failed"
puts e, e.backtrace
end
end
end