diff --git a/lib/Alchemy/Phrasea/Command/Setup/Install.php b/lib/Alchemy/Phrasea/Command/Setup/Install.php
index ab71cf2cc4..863b77c600 100644
--- a/lib/Alchemy/Phrasea/Command/Setup/Install.php
+++ b/lib/Alchemy/Phrasea/Command/Setup/Install.php
@@ -94,7 +94,7 @@ class Install extends Command
/** @var DialogHelper $dialog */
$dialog = $this->getHelperSet()->get('dialog');
- $output->writeln("You are on your way to install Phraseanet, You will need access to 2 MySQL databases.");
+ $output->writeln(" --- You are on your way to install Phraseanet, You will need access to 2 MySQL databases. --- ");
if (!$input->getOption('yes') && !$input->getOption('force') && !$input->getOption('appbox')) {
$continue = $dialog->askConfirmation($output, 'Do you have these two DB handy ? (N/y)', false);
@@ -115,7 +115,7 @@ class Install extends Command
}
if (!$input->getOption('force') && $abConn->getSchemaManager()->tablesExist(['users'])) {
- $output->writeln("Database table already exist in appbox! installation abort");
+ $output->writeln("(*) Database table already exist in appbox! installation abort");
return 1;
}
@@ -123,7 +123,7 @@ class Install extends Command
list($dbConn, $templateName) = $this->getDBConn($input, $output, $abConn, $dialog);
if (!$input->getOption('force') && $dbConn->getSchemaManager()->tablesExist(['record'])) {
- $output->writeln("Database table already exist in databox! installation abort");
+ $output->writeln("(*) Database table already exist in databox! installation abort");
return 1;
}