Merge pull request #8401 from cstyles/fix-outdated-command

Switch `greedy` argument to a keyword
This commit is contained in:
Dawid Dziurla 2020-08-19 19:41:30 +02:00 committed by GitHub
commit dd8e6f42a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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