Skip to content
Snippets Groups Projects
Commit a56ddb9e authored by Jim Witschey's avatar Jim Witschey Committed by Mike McQuaid
Browse files

cmd/install: fallback to searching formula names.


Closes Homebrew/homebrew#33648.

Signed-off-by: default avatarMike McQuaid <mike@mikemcquaid.com>
parent 92e68049
No related branches found
No related tags found
No related merge requests found
......@@ -45,8 +45,11 @@ module Homebrew
ARGV.formulae.each { |f| install_formula(f) }
rescue FormulaUnavailableError => e
ofail e.message
query = query_regexp(e.name)
puts 'Searching formulae...'
puts_columns(search_formulae(query))
puts 'Searching taps...'
puts_columns(search_taps(query_regexp(e.name)))
puts_columns(search_taps(query))
end
end
......
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