From bcfafca56b86058c0cc5ac9d420c364206cb2110 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Mon, 2 Dec 2013 12:44:28 -0600 Subject: [PATCH] Always clear unsatisfied_deps after installation --- Library/Homebrew/formula_installer.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index 60d9ef417f..ddab165329 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -237,7 +237,6 @@ class FormulaInstaller end def install_dependencies - unsatisfied_deps.clear if @pour_failed unsatisfied_deps.concat(filter_deps) if unsatisfied_deps.length > 1 @@ -252,6 +251,8 @@ class FormulaInstaller end end @show_header = true unless unsatisfied_deps.empty? + ensure + unsatisfied_deps.clear end def install_dependency dep