aboutsummaryrefslogtreecommitdiffstats
path: root/core/Command
diff options
context:
space:
mode:
authorCôme Chilliet <come.chilliet@nextcloud.com>2023-10-26 12:01:52 +0200
committerCôme Chilliet <91878298+come-nc@users.noreply.github.com>2023-11-06 15:26:16 +0100
commit802da2b801c6b3c02bfcbb816316cf39e556911b (patch)
tree171a7a8763326776e2bcc85b12e6c7df47027249 /core/Command
parenta1a7774374c46dd3e904035237e02cb20b37f0e5 (diff)
downloadnextcloud-server-802da2b801c6b3c02bfcbb816316cf39e556911b.tar.gz
nextcloud-server-802da2b801c6b3c02bfcbb816316cf39e556911b.zip
Add an emoji for warnings as well
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Diffstat (limited to 'core/Command')
-rw-r--r--core/Command/SetupChecks.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/Command/SetupChecks.php b/core/Command/SetupChecks.php
index f31acba63e3..e64f7a5058e 100644
--- a/core/Command/SetupChecks.php
+++ b/core/Command/SetupChecks.php
@@ -64,6 +64,7 @@ class SetupChecks extends Base {
$emoji = match ($check->getSeverity()) {
'success' => '✓',
'error' => '❌',
+ 'warning' => '⚠',
default => 'ℹ',
};
$verbosity = ($check->getSeverity() === 'error' ? OutputInterface::VERBOSITY_QUIET : OutputInterface::VERBOSITY_NORMAL);