diff --git a/Library/Homebrew/formula_auditor.rb b/Library/Homebrew/formula_auditor.rb index 5e84898ab834b10e2d9f6eb7a5f81199a272b9f8..3369d5adccb744c43fa3129d0ec704fbf81004e8 100644 --- a/Library/Homebrew/formula_auditor.rb +++ b/Library/Homebrew/formula_auditor.rb @@ -366,14 +366,6 @@ module Homebrew problem "Versioned formulae in homebrew/core should use `keg_only :versioned_formula`" end - CERT_ERROR_ALLOWLIST = { - "hashcat" => "https://hashcat.net/hashcat/", - "jinx" => "https://www.jinx-lang.org/", - "lmod" => "https://www.tacc.utexas.edu/research-development/tacc-projects/lmod", - "micropython" => "https://www.micropython.org/", - "monero" => "https://www.getmonero.org/", - }.freeze - def audit_homepage homepage = formula.homepage @@ -381,7 +373,7 @@ module Homebrew return unless @online - return if CERT_ERROR_ALLOWLIST[formula.name] == homepage + return if tap_audit_exception :cert_error_allowlist, formula.name, homepage return unless DevelopmentTools.curl_handles_most_https_certificates?