Skip to content

Commit

Permalink
Merge pull request #18355 from Homebrew/manifest-error-fix2
Browse files Browse the repository at this point in the history
formula_installer: fix manifest error handling
  • Loading branch information
MikeMcQuaid committed Sep 19, 2024
2 parents e1ff668 + ca26080 commit 60a07c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/Homebrew/formula_installer.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1290,7 +1290,7 @@ def fetch_bottle_tab
.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))
Expand Down

0 comments on commit 60a07c9

Please sign in to comment.