From eb77c633ab516912799da823484d8406ee2154d5 Mon Sep 17 00:00:00 2001 From: Seungmin Kim <8457324+ehfd@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:40:44 +0900 Subject: [PATCH] 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> --- core/Command/Integrity/CheckApp.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Command/Integrity/CheckApp.php b/core/Command/Integrity/CheckApp.php index fff5752a7b7..e1889a35cfe 100644 --- a/core/Command/Integrity/CheckApp.php +++ b/core/Command/Integrity/CheckApp.php @@ -63,7 +63,7 @@ class CheckApp extends Base { } $output->writeln('No errors found', OutputInterface::VERBOSITY_VERBOSE); } else { - $output->writeln('App signature not found, skipping app integrity check', OutputInterface::VERBOSITY_VERBOSE); + $output->writeln('App signature not found, skipping app integrity check'); } return 0; }