Browse Source

ValidateCommand: pass $isStrict to outputResult() of with-dependencies too

Guilliam Xavier 5 years ago
parent
commit
7e2679ffc1
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/Composer/Command/ValidateCommand.php

+ 2 - 1
src/Composer/Command/ValidateCommand.php

@@ -108,8 +108,9 @@ EOT
                 $file = $path . '/composer.json';
                 if (is_dir($path) && file_exists($file)) {
                     list($errors, $publishErrors, $warnings) = $validator->validate($file, $checkAll);
-                    $this->outputResult($io, $package->getPrettyName(), $errors, $warnings, $checkPublish, $publishErrors);
+                    $this->outputResult($io, $package->getPrettyName(), $errors, $warnings, $checkPublish, $publishErrors, false, array(), false, $isStrict);
 
+                    // $errors include publish errors when exists
                     $depCode = $errors ? 2 : ($isStrict && $warnings ? 1 : 0);
                     $exitCode = max($depCode, $exitCode);
                 }