fix style

This commit is contained in:
Bevan Kay 2021-07-03 11:58:16 +10:00
parent 507fba73c4
commit 9cf0a7409b
No known key found for this signature in database
GPG Key ID: 479C98436A4773B9
2 changed files with 11 additions and 5 deletions

View File

@ -120,9 +120,15 @@ module Cask
return false if outdated_casks.empty? return false if outdated_casks.empty?
if casks.empty? && !greedy if casks.empty? && !greedy
ohai "Casks with 'auto_updates true' or 'version :latest' will not be upgraded; pass `--greedy` to upgrade them." if !args.greedy_auto_updates? && !args.greedy_latest? if !args.greedy_auto_updates? && !args.greedy_latest?
ohai "Casks with 'version :latest' will not be upgraded; pass `--greedy-latest` to upgrade them." if args.greedy_auto_updates? && !args.greedy_latest? ohai "Casks with 'auto_updates true' or 'version :latest' will not be upgraded; pass `--greedy` to upgrade them."
ohai "Casks with 'auto_updates true' will not be upgraded; pass `--greedy-auto-updates` to upgrade them." if !args.greedy_auto_updates? && args.greedy_latest? end
if args.greedy_auto_updates? && !args.greedy_latest?
ohai "Casks with 'version :latest' will not be upgraded; pass `--greedy-latest` to upgrade them."
end
if !args.greedy_auto_updates? && args.greedy_latest?
ohai "Casks with 'auto_updates true' will not be upgraded; pass `--greedy-auto-updates` to upgrade them."
end
end end
verb = dry_run ? "Would upgrade" : "Upgrading" verb = dry_run ? "Would upgrade" : "Upgrading"

View File

@ -147,8 +147,8 @@ module Homebrew
else else
c = formula_or_cask c = formula_or_cask
c.outdated_info(args.greedy?, verbose?, true, greedy_latest: args.greedy_latest?, c.outdated_info(args.greedy?, verbose?, true, greedy_latest: args.greedy_latest?,
greedy_auto_updates: args.greedy_auto_updates?) greedy_auto_updates: args.greedy_auto_updates?)
end end
end end
end end