Browse Source

fix(occ): Revise output condition

Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
Signed-off-by: Seungmin Kim <8457324+ehfd@users.noreply.github.com>
pull/49577/head
Seungmin Kim 11 months ago
parent
commit
eb77c633ab
  1. 2
      core/Command/Integrity/CheckApp.php

2
core/Command/Integrity/CheckApp.php

@ -63,7 +63,7 @@ class CheckApp extends Base {
}
$output->writeln('<info>No errors found</info>', OutputInterface::VERBOSITY_VERBOSE);
} else {
$output->writeln('<info>App signature not found, skipping app integrity check</info>', OutputInterface::VERBOSITY_VERBOSE);
$output->writeln('<comment>App signature not found, skipping app integrity check</comment>');
}
return 0;
}

Loading…
Cancel
Save