brew/Library/Homebrew/cmd/postinstall.rb
Mike McQuaid 626b56f9f6 brew-postinstall: add new command.
Runs post-install jobs in case they failed or need rerun for any reason.
2013-09-01 13:57:40 +01:00

8 lines
130 B
Ruby

require 'formula_installer'
module Homebrew extend self
def postinstall
ARGV.formulae.each {|f| f.post_install }
end
end