ValidateCommand: pass $isStrict to outputResult() of with-dependencies too
parent
4d74f5ba95
commit
7e2679ffc1
|
@ -108,8 +108,9 @@ EOT
|
||||||
$file = $path . '/composer.json';
|
$file = $path . '/composer.json';
|
||||||
if (is_dir($path) && file_exists($file)) {
|
if (is_dir($path) && file_exists($file)) {
|
||||||
list($errors, $publishErrors, $warnings) = $validator->validate($file, $checkAll);
|
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);
|
$depCode = $errors ? 2 : ($isStrict && $warnings ? 1 : 0);
|
||||||
$exitCode = max($depCode, $exitCode);
|
$exitCode = max($depCode, $exitCode);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue