diff --git a/module/CLI/src/Command/Install/InstallCommand.php b/module/CLI/src/Command/Install/InstallCommand.php
index 0c6dee56..ef08b460 100644
--- a/module/CLI/src/Command/Install/InstallCommand.php
+++ b/module/CLI/src/Command/Install/InstallCommand.php
@@ -100,9 +100,9 @@ class InstallCommand extends Command
$this->filesystem->remove('data/cache/app_config.php');
$this->io->writeln(' Success');
} catch (IOException $e) {
- $this->io->writeln(
- ' Failed! You will have to manually delete the data/cache/app_config.php file to get'
- . ' new config applied.'
+ $this->io->error(
+ 'Failed! You will have to manually delete the data/cache/app_config.php file to'
+ . ' get new config applied.'
);
if ($this->io->isVerbose()) {
$this->getApplication()->renderException($e, $output);