diff --git a/Library/Homebrew/cmd/tap.rb b/Library/Homebrew/cmd/tap.rb index e07aa29eb2..c0cb6e8f1b 100644 --- a/Library/Homebrew/cmd/tap.rb +++ b/Library/Homebrew/cmd/tap.rb @@ -14,7 +14,10 @@ module Homebrew else user, repo = tap_args tap = Tap.fetch(user, repo) - tap.install(:clone_target => ARGV.named[1], :full_clone => ARGV.include?("--full")) + unless tap.installed? + tap.install(:clone_target => ARGV.named[1], + :full_clone => ARGV.include?("--full")) + end end end