diff options
| author | Mike McQuaid | 2017-05-03 09:35:28 +0100 |
|---|---|---|
| committer | GitHub | 2017-05-03 09:35:28 +0100 |
| commit | 935a3fd4fc5a7b2991eca9d49214d268f3ebe935 (patch) | |
| tree | 5958248c43ccd1e4b0cd5de8f007e74ec43a4530 /Library/Homebrew/cmd | |
| parent | 6b005abd6a7839ffc3e4724ac98e03d3e6086db5 (diff) | |
| parent | f951a22beacdae7dd95c94eba67236fe221a3ca0 (diff) | |
| download | brew-935a3fd4fc5a7b2991eca9d49214d268f3ebe935.tar.bz2 | |
Merge pull request #2579 from MikeMcQuaid/install-etc-var-postinstall
Install etc/var files on postinstall.
Diffstat (limited to 'Library/Homebrew/cmd')
| -rw-r--r-- | Library/Homebrew/cmd/postinstall.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/postinstall.rb b/Library/Homebrew/cmd/postinstall.rb index 8808a2602..f5d091227 100644 --- a/Library/Homebrew/cmd/postinstall.rb +++ b/Library/Homebrew/cmd/postinstall.rb @@ -7,7 +7,10 @@ module Homebrew module_function def postinstall - ARGV.resolved_formulae.each { |f| run_post_install(f) if f.post_install_defined? } + ARGV.resolved_formulae.each do |f| + ohai "Postinstalling #{f}" + run_post_install(f) + end end def run_post_install(formula) |
