aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorilovezfs2017-09-23 23:00:29 -0700
committerilovezfs2017-09-23 23:00:29 -0700
commite984623214d2a55d30c342e0a4607eb2fe56d017 (patch)
tree265b64143a10fc9b0f7cee0ac111c16952595094
parenta5b37e3b44e2a6f69602d73b14444ac3bda36f4e (diff)
downloadbrew-e984623214d2a55d30c342e0a4607eb2fe56d017.tar.bz2
audit: don't check for homebrew/science duplicates
It's just noise to turn the migration PRs red over expected duplicates.
-rw-r--r--Library/Homebrew/dev-cmd/audit.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/Library/Homebrew/dev-cmd/audit.rb b/Library/Homebrew/dev-cmd/audit.rb
index 5d1871f54..a9768c856 100644
--- a/Library/Homebrew/dev-cmd/audit.rb
+++ b/Library/Homebrew/dev-cmd/audit.rb
@@ -419,6 +419,7 @@ class FormulaAuditor
@@local_official_taps_name_map ||= Tap.select(&:official?).flat_map(&:formula_names)
.each_with_object({}) do |tap_formula_full_name, name_map|
+ next if tap_formula_full_name.start_with?("homebrew/science/")
tap_formula_name = tap_formula_full_name.split("/").last
name_map[tap_formula_name] ||= []
name_map[tap_formula_name] << tap_formula_full_name