From 1978f4be653c2621658e1da16a2a0478cb159738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Misty=20De=20M=C3=A9o?= Date: Mon, 26 Apr 2021 11:44:35 -0700 Subject: [PATCH] Unbottled: fix use of invalid argument --- Library/Homebrew/dev-cmd/unbottled.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/dev-cmd/unbottled.rb b/Library/Homebrew/dev-cmd/unbottled.rb index 9966a748e2..3d0f0cec0f 100644 --- a/Library/Homebrew/dev-cmd/unbottled.rb +++ b/Library/Homebrew/dev-cmd/unbottled.rb @@ -216,7 +216,7 @@ module Homebrew end deps = Array(deps_hash[f.name]).reject do |dep| - dep.bottle_specification.tag?(@bottle_tag, exact: true) || dep.bottle_unneeded? + dep.bottle_specification.tag?(@bottle_tag, no_older_versions: true) || dep.bottle_unneeded? end if deps.blank?