From 0b302dc3ad84d2f9f72325015d145ebd8a677893 Mon Sep 17 00:00:00 2001 From: thibhero Date: Thu, 6 Mar 2025 22:32:51 -0500 Subject: [PATCH] always include --- Library/Homebrew/install.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/install.rb b/Library/Homebrew/install.rb index 97734f232e..c7a0b41aff 100644 --- a/Library/Homebrew/install.rb +++ b/Library/Homebrew/install.rb @@ -406,8 +406,8 @@ module Homebrew # 3. Optionally, any installed formula that depends on one of these and is outdated. def compute_sized_formulae(formulae, args:) sized_formulae = formulae.flat_map do |formula| - # Always include the formula itself if bottled. - formula_list = formula.bottled? ? [formula] : [] + # Always include the formula itself. + formula_list = [formula] deps = args.build_from_source? ? formula.deps.build : formula.deps.required # If there are dependencies, try to gather outdated, bottled ones.