brew-postinstall: add new command.

Runs post-install jobs in case they failed or need rerun for any reason.
This commit is contained in:
Mike McQuaid 2013-09-01 13:56:35 +01:00
parent 0c5d928cad
commit 626b56f9f6

View File

@ -0,0 +1,7 @@
require 'formula_installer'
module Homebrew extend self
def postinstall
ARGV.formulae.each {|f| f.post_install }
end
end