brew/Library/Homebrew/cmd/postinstall.rb
2024-04-01 09:59:47 -07:00

35 lines
849 B
Ruby

# typed: strict
# frozen_string_literal: true
require "abstract_command"
require "sandbox"
require "formula_installer"
module Homebrew
module Cmd
class Postinstall < AbstractCommand
cmd_args do
description <<~EOS
Rerun the post-install steps for <formula>.
EOS
named_args :installed_formula, min: 1
end
sig { override.void }
def run
args.named.to_resolved_formulae.each do |f|
ohai "Postinstalling #{f}"
f.install_etc_var
if f.post_install_defined?
fi = FormulaInstaller.new(f, **{ debug: args.debug?, quiet: args.quiet?, verbose: args.verbose? }.compact)
fi.post_install
else
opoo "#{f}: no `post_install` method was defined in the formula!"
end
end
end
end
end
end