From f612a4f75fbe7db23e2e48811edcbf7dcf67bd37 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 21 Oct 2013 19:48:48 +0100 Subject: install: fix trying to tap local bottles. --- Library/Homebrew/cmd/install.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Library') diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb index b38a47899..b77121a19 100644 --- a/Library/Homebrew/cmd/install.rb +++ b/Library/Homebrew/cmd/install.rb @@ -16,7 +16,7 @@ module Homebrew extend self msg = blacklisted? name raise "No available formula for #{name}\n#{msg}" if msg end - if name =~ HOMEBREW_TAP_REGEX then + if not File.exist? name and name =~ HOMEBREW_TAP_REGEX then require 'cmd/tap' install_tap $1, $2 end -- cgit v1.2.3