Switch greedy argument to a keyword

The `greedy` parameter was switched to a keyword parameter in
3a91c37e66661781a236422c4ab8fc597e09a7a1 but this call wasn't updated
accordingly.
This commit is contained in:
Collin Styles 2020-08-19 10:05:56 -07:00
parent f6e035ec98
commit d45701cf9b

View File

@ -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