aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/install.rb
diff options
context:
space:
mode:
authorMike McQuaid2013-10-22 11:58:33 +0100
committerMike McQuaid2013-10-22 11:58:40 +0100
commite6cf7be461bfac3670beb42661be495c90398dc9 (patch)
treebdb90656195afdf5625a6a39bd11132b73a7d2ab /Library/Homebrew/cmd/install.rb
parentcf1211dfac85ec342a8c5a24cd796d6e5720a289 (diff)
downloadhomebrew-e6cf7be461bfac3670beb42661be495c90398dc9.tar.bz2
Different regex for user/tap/formula and user/tap.
Closes #23430.
Diffstat (limited to 'Library/Homebrew/cmd/install.rb')
-rw-r--r--Library/Homebrew/cmd/install.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb
index a8bd6454f..b24783aac 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 not File.exist? name and name =~ HOMEBREW_TAP_REGEX then
+ if not File.exist? name and name =~ HOMEBREW_TAP_FORMULA_REGEX then
require 'cmd/tap'
begin
install_tap $1, $2