From 9c930146a53d843490d536ac95cb0160c41b291e Mon Sep 17 00:00:00 2001 From: Richard Steinmetz Date: Wed, 19 Jun 2024 15:44:21 +0200 Subject: [PATCH] fix(theming): properly apply warning style to update output Signed-off-by: Richard Steinmetz --- apps/theming/lib/Command/UpdateConfig.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/theming/lib/Command/UpdateConfig.php b/apps/theming/lib/Command/UpdateConfig.php index d3131fcb58fca..3a3f3f0c76763 100644 --- a/apps/theming/lib/Command/UpdateConfig.php +++ b/apps/theming/lib/Command/UpdateConfig.php @@ -111,9 +111,9 @@ protected function execute(InputInterface $input, OutputInterface $output): int $value = $this->imageManager->updateImage($key, $value); $key = $key . 'Mime'; } - + if ($key === 'color') { - $output->writeln('Using "color" is depreacted, use "primary_color" instead'); + $output->writeln('Using "color" is deprecated, use "primary_color" instead'); $key = 'primary_color'; }