postinstall: use ARGV.resolved_formulae

This commit is contained in:
Xu Cheng 2015-05-17 21:07:20 +08:00
parent ba4d7fe615
commit 437a3182b0

View File

@ -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)