aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2012-03-10 08:18:42 +1300
committerMike McQuaid2012-03-10 08:18:42 +1300
commitcd13553d5906b89258d1504329afc4b587967631 (patch)
tree74e55c746d8594875fb41b990a957d418c2c2a63 /Library
parentd60f4ffcd80a984018c61f9ca60269d42a055bf8 (diff)
downloadbrew-cd13553d5906b89258d1504329afc4b587967631.tar.bz2
Remove bad exit status; need to fix another way.
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/install.rb1
-rw-r--r--Library/Homebrew/cmd/upgrade.rb2
2 files changed, 0 insertions, 3 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb
index 3afddaf9c..bfc5d3e7b 100644
--- a/Library/Homebrew/cmd/install.rb
+++ b/Library/Homebrew/cmd/install.rb
@@ -87,7 +87,6 @@ module Homebrew extend self
fi.finish
rescue CannotInstallFormulaError => e
onoe e.message
- exit 1
end
end
end
diff --git a/Library/Homebrew/cmd/upgrade.rb b/Library/Homebrew/cmd/upgrade.rb
index 56914da41..9777c5ce5 100644
--- a/Library/Homebrew/cmd/upgrade.rb
+++ b/Library/Homebrew/cmd/upgrade.rb
@@ -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