Merge pull request #16672 from reitermarkus/audit-double-quotes

Fix duplicate quotes in dependency audit.
This commit is contained in:
Kevin 2024-02-15 20:13:26 -08:00 committed by GitHub
commit 57ff9bc3eb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -279,10 +279,10 @@ module Homebrew
# Don't complain about missing cross-tap dependencies # Don't complain about missing cross-tap dependencies
next next
rescue FormulaUnavailableError rescue FormulaUnavailableError
problem "Can't find dependency '#{dep.name.inspect}'." problem "Can't find dependency '#{dep.name}'."
next next
rescue TapFormulaAmbiguityError rescue TapFormulaAmbiguityError
problem "Ambiguous dependency '#{dep.name.inspect}'." problem "Ambiguous dependency '#{dep.name}'."
next next
end end