From d45701cf9b6d369049053c675883b4178541f277 Mon Sep 17 00:00:00 2001 From: Collin Styles Date: Wed, 19 Aug 2020 10:05:56 -0700 Subject: [PATCH] Switch `greedy` argument to a keyword The `greedy` parameter was switched to a keyword parameter in 3a91c37e66661781a236422c4ab8fc597e09a7a1 but this call wasn't updated accordingly. --- Library/Homebrew/cmd/outdated.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/outdated.rb b/Library/Homebrew/cmd/outdated.rb index b93a76a3b2..0dda1be8b4 100644 --- a/Library/Homebrew/cmd/outdated.rb +++ b/Library/Homebrew/cmd/outdated.rb @@ -197,7 +197,7 @@ module Homebrew if formula_or_cask.is_a?(Formula) formula_or_cask.outdated?(fetch_head: args.fetch_HEAD?) else - formula_or_cask.outdated?(args.greedy?) + formula_or_cask.outdated?(greedy: args.greedy?) end end end