8 lines
118 B
Ruby
8 lines
118 B
Ruby
require 'formula_installer'
|
|
|
|
module Homebrew
|
|
def postinstall
|
|
ARGV.formulae.each {|f| f.post_install }
|
|
end
|
|
end
|