diff options
| author | Jack Nagel | 2013-12-02 12:44:28 -0600 |
|---|---|---|
| committer | Jack Nagel | 2013-12-02 12:44:28 -0600 |
| commit | bcfafca56b86058c0cc5ac9d420c364206cb2110 (patch) | |
| tree | 53d0f81cce8a32c1a196dcd8389aeb0a7cf5f630 /Library | |
| parent | 24a853ebe5de53d78c95d55052d7a0fa6214bb57 (diff) | |
| download | brew-bcfafca56b86058c0cc5ac9d420c364206cb2110.tar.bz2 | |
Always clear unsatisfied_deps after installation
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index 60d9ef417..ddab16532 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 |
