aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/install.rb
diff options
context:
space:
mode:
authorMike McQuaid2014-01-03 21:51:42 +0000
committerMike McQuaid2014-01-03 21:57:06 +0000
commit0496ebe3ea3395bb0f692e6a487c09e866314092 (patch)
tree0a2c7518d62156e564cf9e391d80b04697714ca3 /Library/Homebrew/cmd/install.rb
parente901c920a1981c49d0cf06376d10f30e9382097a (diff)
downloadhomebrew-0496ebe3ea3395bb0f692e6a487c09e866314092.tar.bz2
install, update: AlreadyTappedError never raised.
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
-rw-r--r--Library/Homebrew/cmd/install.rb5
1 files changed, 1 insertions, 4 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb
index ccdc48b63..4e1705c74 100644
--- a/Library/Homebrew/cmd/install.rb
+++ b/Library/Homebrew/cmd/install.rb
@@ -31,10 +31,7 @@ module Homebrew extend self
end
if not File.exist? name and name =~ HOMEBREW_TAP_FORMULA_REGEX then
require 'cmd/tap'
- begin
- install_tap $1, $2
- rescue AlreadyTappedError
- end
+ install_tap $1, $2
end
end unless ARGV.force?