diff options
author | Seungmin Kim <8457324+ehfd@users.noreply.github.com> | 2024-12-17 04:40:44 +0900 |
---|---|---|
committer | Seungmin Kim <8457324+ehfd@users.noreply.github.com> | 2024-12-17 09:36:34 +0900 |
commit | eb77c633ab516912799da823484d8406ee2154d5 (patch) | |
tree | 4d9ff87872e0aa6dc02545225adb304df13f5a67 /core | |
parent | a5c25635b3d51ac18554f8e0031f0c2eeba59bfc (diff) | |
download | nextcloud-server-eb77c633ab516912799da823484d8406ee2154d5.tar.gz nextcloud-server-eb77c633ab516912799da823484d8406ee2154d5.zip |
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>
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/Integrity/CheckApp.php | 2 |
1 files changed, 1 insertions, 1 deletions
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('<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; } |