aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/postinstall.rb
diff options
context:
space:
mode:
authorXu Cheng2015-05-17 21:07:20 +0800
committerXu Cheng2015-05-27 13:53:41 +0800
commit437a3182b02bbd9c8bef23aad53b4b78c7f894b5 (patch)
treed56bc19df424d3157984c0fa2e7a78d302f0adb4 /Library/Homebrew/cmd/postinstall.rb
parentba4d7fe615973680e6c15a3f00fe0f032b154665 (diff)
downloadbrew-437a3182b02bbd9c8bef23aad53b4b78c7f894b5.tar.bz2
postinstall: use ARGV.resolved_formulae
Diffstat (limited to 'Library/Homebrew/cmd/postinstall.rb')
-rw-r--r--Library/Homebrew/cmd/postinstall.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/postinstall.rb b/Library/Homebrew/cmd/postinstall.rb
index 900980355..1936f25ea 100644
--- a/Library/Homebrew/cmd/postinstall.rb
+++ b/Library/Homebrew/cmd/postinstall.rb
@@ -2,7 +2,7 @@ require "sandbox"
module Homebrew
def postinstall
- ARGV.formulae.each { |f| run_post_install(f) }
+ ARGV.resolved_formulae.each { |f| run_post_install(f) }
end
def run_post_install(formula)