瀏覽代碼

Fix boolean check fail from a8ec134c2c34482bedf08c6d022cbbc5ca3fa7bc

Jordi Boggiano 11 年之前
父節點
當前提交
a931faaa34
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Composer/Installer.php

+ 1 - 1
src/Composer/Installer.php

@@ -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) {