From 437a3182b02bbd9c8bef23aad53b4b78c7f894b5 Mon Sep 17 00:00:00 2001 From: Xu Cheng Date: Sun, 17 May 2015 21:07:20 +0800 Subject: [PATCH] postinstall: use ARGV.resolved_formulae --- Library/Homebrew/cmd/postinstall.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/postinstall.rb b/Library/Homebrew/cmd/postinstall.rb index 9009803559..1936f25ea3 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)