brew/Library/Homebrew/cmd/postinstall.rb
2018-05-12 14:03:37 +02:00

18 lines
329 B
Ruby

#: * `postinstall` <formula>:
#: Rerun the post-install steps for <formula>.
require "sandbox"
require "formula_installer"
module Homebrew
module_function
def postinstall
ARGV.resolved_formulae.each do |f|
ohai "Postinstalling #{f}"
fi = FormulaInstaller.new(f)
fi.post_install
end
end
end