From aa4e39785ca4cfa42f4da4bced01fef2ce09e1e8 Mon Sep 17 00:00:00 2001 From: Steve Peters Date: Thu, 18 Nov 2021 08:13:44 -0800 Subject: [PATCH] dev-cmd/unbottled: don't skip non-core formulae Related to Homebrew/homebrew-test-bot#705 Signed-off-by: Steve Peters --- Library/Homebrew/dev-cmd/unbottled.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/Library/Homebrew/dev-cmd/unbottled.rb b/Library/Homebrew/dev-cmd/unbottled.rb index 94e0c5b5e3..882ae23127 100644 --- a/Library/Homebrew/dev-cmd/unbottled.rb +++ b/Library/Homebrew/dev-cmd/unbottled.rb @@ -123,8 +123,6 @@ module Homebrew uses_hash = {} all_formulae.each do |f| - next unless f.core_formula? - deps = f.recursive_dependencies do |_, dep| Dependency.prune if dep.optional? end.map(&:to_formula)