소스 검색

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