diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb index 2fe22cfa48..b38a47899a 100644 --- a/Library/Homebrew/cmd/install.rb +++ b/Library/Homebrew/cmd/install.rb @@ -16,6 +16,10 @@ module Homebrew extend self msg = blacklisted? name raise "No available formula for #{name}\n#{msg}" if msg end + if name =~ HOMEBREW_TAP_REGEX then + require 'cmd/tap' + install_tap $1, $2 + end end unless ARGV.force? perform_preinstall_checks