1
0
Fork 0

Fix boolean check fail from a8ec134c2c

pull/2888/head
Jordi Boggiano 2014-04-06 22:44:56 +02:00
parent abc34cc62a
commit a931faaa34
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ class Installer
$this->installationManager->notifyInstalls();
// output suggestions if we're in dev mode
if (!$this->devMode) {
if ($this->devMode) {
foreach ($this->suggestedPackages as $suggestion) {
$target = $suggestion['target'];
foreach ($installedRepo->getPackages() as $package) {