mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
8 lines
130 B
Ruby
8 lines
130 B
Ruby
![]() |
require 'formula_installer'
|
||
|
|
||
|
module Homebrew extend self
|
||
|
def postinstall
|
||
|
ARGV.formulae.each {|f| f.post_install }
|
||
|
end
|
||
|
end
|