formula_auditor: handle nil tap

This commit is contained in:
Bo Anderson 2023-11-05 00:57:33 +00:00
parent e002907b14
commit 79441447f8
No known key found for this signature in database
GPG Key ID: 3DB94E204E137D65

View File

@ -318,7 +318,11 @@ module Homebrew
next unless @core_tap
unless dep_f.tap.core_tap?
if dep_f.tap.nil?
problem <<~EOS
Dependency '#{dep.name}' does not exist in any tap.
EOS
elsif !dep_f.tap.core_tap?
problem <<~EOS
Dependency '#{dep.name}' is not in homebrew/core. Formulae in homebrew/core
should not have dependencies in external taps.