Remove bad exit status; need to fix another way.

This commit is contained in:
Mike McQuaid 2012-03-10 08:18:42 +13:00
parent d60f4ffcd8
commit cd13553d59
2 changed files with 0 additions and 3 deletions

View File

@ -87,7 +87,6 @@ module Homebrew extend self
fi.finish
rescue CannotInstallFormulaError => e
onoe e.message
exit 1
end
end
end

View File

@ -66,11 +66,9 @@ module Homebrew extend self
installer.finish
rescue CannotInstallFormulaError => e
onoe e
exit 1
rescue BuildError => e
e.dump
puts
exit 1
ensure
# restore previous installation state if build failed
outdated_keg.link if outdated_keg and not f.installed? rescue nil