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
commit9728610ca04285e8d7c124062f7d4b4a1e54cf35 (patch)
tree725545a625df25c59074992bcd4775d54c802d58 /Library
parent2780dcb843701e23d5317927f9bf929865015cfe (diff)
downloadhomebrew-9728610ca04285e8d7c124062f7d4b4a1e54cf35.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