Browse Source

Make integrity commands verbose

Signed-off-by: Joas Schilling <coding@schilljs.com>
tags/v23.0.0beta1
Joas Schilling 2 years ago
parent
commit
5390d3194f
No account linked to committer's email address
2 changed files with 4 additions and 0 deletions
  1. 2
    0
      core/Command/Integrity/CheckApp.php
  2. 2
    0
      core/Command/Integrity/CheckCore.php

+ 2
- 0
core/Command/Integrity/CheckApp.php View File

@@ -72,8 +72,10 @@ class CheckApp extends Base {
$result = $this->checker->verifyAppSignature($appid, $path, true);
$this->writeArrayInOutputFormat($input, $output, $result);
if (count($result) > 0) {
$output->writeln('<error>' . count($result) . ' errors found</error>', OutputInterface::VERBOSITY_VERBOSE);
return 1;
}
$output->writeln('<info>No errors found</info>', OutputInterface::VERBOSITY_VERBOSE);
return 0;
}
}

+ 2
- 0
core/Command/Integrity/CheckCore.php View File

@@ -68,8 +68,10 @@ class CheckCore extends Base {
$result = $this->checker->verifyCoreSignature();
$this->writeArrayInOutputFormat($input, $output, $result);
if (count($result) > 0) {
$output->writeln('<error>' . count($result) . ' errors found</error>', OutputInterface::VERBOSITY_VERBOSE);
return 1;
}
$output->writeln('<info>No errors found</info>', OutputInterface::VERBOSITY_VERBOSE);
return 0;
}
}

Loading…
Cancel
Save