diff options
| author | Xu Cheng | 2015-05-17 21:07:20 +0800 |
|---|---|---|
| committer | Xu Cheng | 2015-05-27 13:53:41 +0800 |
| commit | 437a3182b02bbd9c8bef23aad53b4b78c7f894b5 (patch) | |
| tree | d56bc19df424d3157984c0fa2e7a78d302f0adb4 /Library/Homebrew/cmd/postinstall.rb | |
| parent | ba4d7fe615973680e6c15a3f00fe0f032b154665 (diff) | |
| download | brew-437a3182b02bbd9c8bef23aad53b4b78c7f894b5.tar.bz2 | |
postinstall: use ARGV.resolved_formulae
Diffstat (limited to 'Library/Homebrew/cmd/postinstall.rb')
| -rw-r--r-- | Library/Homebrew/cmd/postinstall.rb | 2 |
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) |
