aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/audit.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/audit.rb b/Library/Homebrew/cmd/audit.rb
index 2d61a4c7d..3ddbdd048 100644
--- a/Library/Homebrew/cmd/audit.rb
+++ b/Library/Homebrew/cmd/audit.rb
@@ -216,6 +216,9 @@ class FormulaAuditor
formula.conflicts.each do |c|
begin
Formulary.factory(c.name)
+ rescue TapFormulaUnavailableError
+ # Don't complain about missing cross-tap conflicts.
+ next
rescue FormulaUnavailableError
problem "Can't find conflicting formula #{c.name.inspect}."
end