From f1e4add444fa7ce4848a9b51c71f7a99d42ec796 Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Wed, 22 Sep 2021 19:36:53 +0100 Subject: [PATCH] formula_installer: fix installation of local bottles --- Library/Homebrew/formula_installer.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index 26b2019305..dc4975b617 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -150,6 +150,8 @@ class FormulaInstaller return false end + return true if formula.local_bottle_path.present? + bottle = formula.bottle_for_tag(Utils::Bottles.tag.to_sym) return false if bottle.nil?