
It's always seemed a bit pointless to me that we have both of these commands. Given we're doing more and more to recommend (and eventually, safely, automatically run (see #4760) `brew cleanup` let's roll their functionality into a single command.
33 lines
747 B
Ruby
33 lines
747 B
Ruby
#: * `prune` [`--dry-run`]:
|
|
#: Deprecated. Use `brew cleanup` instead.
|
|
|
|
require "keg"
|
|
require "cli_parser"
|
|
require "cleanup"
|
|
|
|
module Homebrew
|
|
module_function
|
|
|
|
def prune_args
|
|
Homebrew::CLI::Parser.new do
|
|
usage_banner <<~EOS
|
|
`prune` [<options>]
|
|
|
|
Deprecated. Use `brew cleanup` instead.
|
|
EOS
|
|
switch "-n", "--dry-run",
|
|
description: "Show what would be removed, but do not actually remove anything."
|
|
switch :verbose
|
|
switch :debug
|
|
end
|
|
end
|
|
|
|
def prune
|
|
prune_args.parse
|
|
|
|
# TODO: deprecate and hide from manpage for next minor release.
|
|
# odeprecated("'brew prune'", "'brew cleanup'")
|
|
Cleanup.new(dry_run: args.dry_run?).prune_prefix_symlinks_and_directories
|
|
end
|
|
end
|