From ef5623612790d86df7652b929747424fc74414f9 Mon Sep 17 00:00:00 2001 From: apainintheneck Date: Sat, 22 Jun 2024 12:19:09 -0700 Subject: [PATCH] formula_auditor: scope eol check to core tap This is not relevant information for third-party taps and requires network requests to `endoflife.date` so it's best to avoid them in this case. Closes https://github.com/Homebrew/brew/issues/17531 --- Library/Homebrew/formula_auditor.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/formula_auditor.rb b/Library/Homebrew/formula_auditor.rb index 5be43238e6..9fa5600bf7 100644 --- a/Library/Homebrew/formula_auditor.rb +++ b/Library/Homebrew/formula_auditor.rb @@ -567,6 +567,7 @@ module Homebrew def audit_eol return unless @online + return unless @core_tap return if formula.deprecated? || formula.disabled?