diff options
| author | Mike McQuaid | 2014-01-03 21:51:42 +0000 |
|---|---|---|
| committer | Mike McQuaid | 2014-01-03 21:57:06 +0000 |
| commit | 0496ebe3ea3395bb0f692e6a487c09e866314092 (patch) | |
| tree | 0a2c7518d62156e564cf9e391d80b04697714ca3 /Library/Homebrew/cmd/install.rb | |
| parent | e901c920a1981c49d0cf06376d10f30e9382097a (diff) | |
| download | homebrew-0496ebe3ea3395bb0f692e6a487c09e866314092.tar.bz2 | |
install, update: AlreadyTappedError never raised.
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
| -rw-r--r-- | Library/Homebrew/cmd/install.rb | 5 |
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? |
