mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
68 lines
2.3 KiB
Ruby
68 lines
2.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "formula_installer"
|
|
require "development_tools"
|
|
require "messages"
|
|
require "reinstall"
|
|
require "cli/parser"
|
|
require "cleanup"
|
|
|
|
module Homebrew
|
|
module_function
|
|
|
|
def reinstall_args
|
|
Homebrew::CLI::Parser.new do
|
|
usage_banner <<~EOS
|
|
`reinstall` [<options>] <formula>
|
|
|
|
Uninstall and then install <formula> using the same options it was originally
|
|
installed with, plus any appended brew formula options.
|
|
|
|
Unless `HOMEBREW_NO_INSTALL_CLEANUP` is set, `brew cleanup` will then be run for the
|
|
reinstalled formulae or, every 30 days, for all formulae.
|
|
EOS
|
|
switch :debug,
|
|
description: "If brewing fails, open an interactive debugging session with access to IRB "\
|
|
"or a shell inside the temporary build directory."
|
|
switch "-s", "--build-from-source",
|
|
description: "Compile <formula> from source even if a bottle is available."
|
|
switch "--force-bottle",
|
|
description: "Install from a bottle if it exists for the current or newest version of "\
|
|
"macOS, even if it would not normally be used for installation."
|
|
switch "--keep-tmp",
|
|
description: "Retain the temporary files created during installation."
|
|
switch :force,
|
|
description: "Install without checking for previously installed keg-only or "\
|
|
"non-migrated versions."
|
|
switch :verbose,
|
|
description: "Print the verification and postinstall steps."
|
|
switch "--display-times",
|
|
env: :display_install_times,
|
|
description: "Print install times for each formula at the end of the run."
|
|
conflicts "--build-from-source", "--force-bottle"
|
|
formula_options
|
|
end
|
|
end
|
|
|
|
def reinstall
|
|
reinstall_args.parse
|
|
|
|
raise FormulaUnspecifiedError if args.remaining.empty?
|
|
|
|
FormulaInstaller.prevent_build_flags unless DevelopmentTools.installed?
|
|
|
|
Install.perform_preinstall_checks
|
|
|
|
ARGV.resolved_formulae.each do |f|
|
|
if f.pinned?
|
|
onoe "#{f.full_name} is pinned. You must unpin it to reinstall."
|
|
next
|
|
end
|
|
Migrator.migrate_if_needed(f)
|
|
reinstall_formula(f)
|
|
Cleanup.install_formula_clean!(f)
|
|
end
|
|
Homebrew.messages.display_messages
|
|
end
|
|
end
|