From 0055e4dc5f1d49838ecc45b4bfe48a0eab529443 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Mon, 21 Oct 2013 19:48:48 +0100 Subject: [PATCH] install: fix trying to tap local bottles. --- Library/Homebrew/cmd/install.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb index b38a47899a..b77121a194 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