From 685efd5a67e8dcf73391c765d205e4cb560df272 Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Fri, 27 Nov 2020 11:55:53 -0500 Subject: [PATCH] Remove hardcoded exceptions to the versioned_keg_only_allowlist --- Library/Homebrew/formula_auditor.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/Library/Homebrew/formula_auditor.rb b/Library/Homebrew/formula_auditor.rb index 9ec59bcbe9..1835029ae4 100644 --- a/Library/Homebrew/formula_auditor.rb +++ b/Library/Homebrew/formula_auditor.rb @@ -360,8 +360,6 @@ module Homebrew end return if tap_audit_exception :versioned_keg_only_allowlist, formula.name - return if formula.name.start_with?("adoptopenjdk@") - return if formula.name.start_with?("gcc@") problem "Versioned formulae in homebrew/core should use `keg_only :versioned_formula`" end