Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move condition to nested if statement. #6597

Merged
merged 1 commit into from Oct 14, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions Library/Homebrew/cmd/search.rb
Expand Up @@ -100,10 +100,10 @@ def search
puts Formatter.columns(all_casks)
end

if $stdout.tty? && !local_casks.include?(query)
if $stdout.tty?
count = all_formulae.count + all_casks.count

if reason = MissingFormula.reason(query, silent: true)
if reason = MissingFormula.reason(query, silent: true) && !local_casks.include?(query)
if count.positive?
puts
puts "If you meant #{query.inspect} specifically:"
Expand Down