From 248ca231a28b552ccd56d6881d96dd65e8979606 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Tue, 16 Mar 2021 18:22:05 +0000 Subject: [PATCH] formula_installer: don't warn about bottles when active spec is HEAD --- Library/Homebrew/formula_installer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index c30199bc43..6526256604 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -231,7 +231,7 @@ class FormulaInstaller # TODO: re-enable this on Linux when we merge linuxbrew-core into # homebrew-core and have full bottle coverage. (OS.mac? || ENV["CI"]) && - !build_from_source? && !build_bottle? && + !build_from_source? && !build_bottle? && !formula.head? && formula.tap&.core_tap? && !formula.bottle_unneeded? && # Integration tests override homebrew-core locations ENV["HOMEBREW_TEST_TMPDIR"].nil? &&