aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/postinstall.rb
blob: db3125dc9d84d19fdfa6cc43f37f136445648534 (plain)
1
2
3
4
5
6
7
require 'formula_installer'

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