audit: don't check for homebrew/science duplicates

It's just noise to turn the migration PRs red over expected duplicates.
This commit is contained in:
ilovezfs 2017-09-23 23:00:29 -07:00
parent a5b37e3b44
commit e984623214

View File

@ -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