aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorMike McQuaid2017-05-03 09:35:28 +0100
committerGitHub2017-05-03 09:35:28 +0100
commit935a3fd4fc5a7b2991eca9d49214d268f3ebe935 (patch)
tree5958248c43ccd1e4b0cd5de8f007e74ec43a4530 /Library/Homebrew/cmd
parent6b005abd6a7839ffc3e4724ac98e03d3e6086db5 (diff)
parentf951a22beacdae7dd95c94eba67236fe221a3ca0 (diff)
downloadbrew-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.rb5
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)