From e2f02bcfbf36607e2c0cd12ac3477c7d14367cdb Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Sat, 6 Sep 2025 00:12:55 -0400 Subject: [PATCH] Allow head-only formulae in third party taps --- Library/Homebrew/formula_auditor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula_auditor.rb b/Library/Homebrew/formula_auditor.rb index 57c53451d7..bbf9c9a1ad 100644 --- a/Library/Homebrew/formula_auditor.rb +++ b/Library/Homebrew/formula_auditor.rb @@ -749,7 +749,7 @@ module Homebrew end def audit_specs - problem "HEAD-only (no stable download)" if head_only?(formula) + problem "HEAD-only (no stable download)" if head_only?(formula) && @core_tap %w[Stable HEAD].each do |name| spec_name = name.downcase.to_sym