1
0
Fork 0

Merge pull request #632 from igorw/no-suggest-installed

Do not suggest packages that were installed
pull/633/head
Jordi Boggiano 2012-04-27 05:42:10 -07:00
commit f5ea87e855
1 changed files with 3 additions and 1 deletions

View File

@ -154,7 +154,9 @@ class Installer
// output suggestions
foreach ($this->suggestedPackages as $suggestion) {
$this->io->write($suggestion['source'].' suggests installing '.$suggestion['target'].' ('.$suggestion['reason'].')');
if (!$installedRepo->findPackages($suggestion['target'])) {
$this->io->write($suggestion['source'].' suggests installing '.$suggestion['target'].' ('.$suggestion['reason'].')');
}
}
if (!$this->dryRun) {