From ca26080ef47da3291fb2eb13303c8e2ec76d2f5c Mon Sep 17 00:00:00 2001 From: Bo Anderson Date: Thu, 19 Sep 2024 15:26:14 +0100 Subject: [PATCH] formula_installer: fix manifest error handling --- 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 e4bd588820..587e3b70cf 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -1290,7 +1290,7 @@ on_request: installed_on_request?, options:) .fetch("runtime_dependencies", []).then { |deps| deps || [] } .each_with_object({}) { |dep, h| h[dep["full_name"]] = dep } .freeze - rescue DownloadError, ArgumentError + rescue DownloadError, Resource::BottleManifest::Error # do nothing end @fetch_bottle_tab = T.let(true, T.nilable(TrueClass))