From 3d635c22cd18cb33a5cc381a7bd7b9d5dc57aecb Mon Sep 17 00:00:00 2001 From: MoonFruit Date: Wed, 4 Aug 2021 14:09:33 +0800 Subject: [PATCH] Fix brew outdated --cask --json --greedy --- Library/Homebrew/cmd/outdated.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Library/Homebrew/cmd/outdated.rb b/Library/Homebrew/cmd/outdated.rb index da9575f623..26c455972a 100644 --- a/Library/Homebrew/cmd/outdated.rb +++ b/Library/Homebrew/cmd/outdated.rb @@ -150,8 +150,7 @@ module Homebrew else c = formula_or_cask - c.outdated_info(args.greedy?, verbose?, true, greedy_latest: args.greedy_latest?, - greedy_auto_updates: args.greedy_auto_updates?) + c.outdated_info(args.greedy?, verbose?, true, args.greedy_latest?, args.greedy_auto_updates?) end end end