mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
35 lines
638 B
Ruby
35 lines
638 B
Ruby
# frozen_string_literal: true
|
|
|
|
require "sandbox"
|
|
require "formula_installer"
|
|
require "cli/parser"
|
|
|
|
module Homebrew
|
|
module_function
|
|
|
|
def postinstall_args
|
|
Homebrew::CLI::Parser.new do
|
|
usage_banner <<~EOS
|
|
`postinstall` <formula>
|
|
|
|
Rerun the post-install steps for <formula>.
|
|
EOS
|
|
switch :force
|
|
switch :verbose
|
|
switch :debug
|
|
min_named :keg
|
|
end
|
|
end
|
|
|
|
def postinstall
|
|
args = postinstall_args.parse
|
|
|
|
args.resolved_formulae.each do |f|
|
|
ohai "Postinstalling #{f}"
|
|
fi = FormulaInstaller.new(f)
|
|
fi.force = args.force?
|
|
fi.post_install
|
|
end
|
|
end
|
|
end
|