From 267dd32a34e577aa22df13abe2ab897f4c74dc1f Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Tue, 26 Oct 2021 15:02:29 +0100 Subject: [PATCH] formulary: fix keg resolving not setting force_bottle --- Library/Homebrew/formulary.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formulary.rb b/Library/Homebrew/formulary.rb index 589fa5373b..4696e1a708 100644 --- a/Library/Homebrew/formulary.rb +++ b/Library/Homebrew/formulary.rb @@ -450,7 +450,7 @@ module Formulary keg = kegs.find(&:linked?) || kegs.find(&:optlinked?) || kegs.max_by(&:version) if keg - from_keg(keg, spec, alias_path: alias_path) + from_keg(keg, spec, alias_path: alias_path, force_bottle: force_bottle, flags: flags) else factory(rack.basename.to_s, spec || :stable, alias_path: alias_path, from: :rack, force_bottle: force_bottle, flags: flags)