Audit: complain if no targets are found

This commit is contained in:
Sean Molenaar 2022-09-26 10:49:12 +02:00
parent 4441452f4e
commit 95777e7cdf

View File

@ -141,6 +141,12 @@ module Homebrew
args.named.to_formulae_and_casks
.partition { |formula_or_cask| formula_or_cask.is_a?(Formula) }
end
if audit_formulae.empty? && audit_casks.empty?
ofail "No audits to perform"
return
end
style_files = args.named.to_paths unless skip_style
only_cops = args.only_cops