cli/named_args: don't convert to taps.

Fixes https://github.com/Homebrew/brew/issues/8966
This commit is contained in:
Mike McQuaid 2020-11-17 17:31:30 +00:00
parent 421853217f
commit f212bf20cb
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70

View File

@ -100,14 +100,12 @@ module Homebrew
to_formulae_to_casks(method: :resolve, only: only)
end
# Convert named arguments to {Tap}, {Formula} or {Cask} objects.
# Convert named arguments to {Formula} or {Cask} objects.
# If both a formula and cask exist with the same name, returns the
# formula and prints a warning unless `only` is specified.
def to_objects(only: nil, method: nil)
@to_objects ||= {}
@to_objects[only] ||= downcased_unique_named.flat_map do |name|
next Tap.fetch(name) if only == :tap || (only.nil? && name.count("/") == 1 && !name.start_with?("./", "/"))
load_formula_or_cask(name, only: only, method: method)
end.uniq.freeze
end