Skip to content
Snippets Groups Projects
Commit c7149256 authored by Mike McQuaid's avatar Mike McQuaid
Browse files

install: tap if full tap formula format given.


Closes Homebrew/homebrew#23411.

Signed-off-by: default avatarMike McQuaid <mike@mikemcquaid.com>
parent 077f09e4
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment