From 301cd157cfebd77a2bfa821b09b72cd8b5f53d44 Mon Sep 17 00:00:00 2001 From: Nicolas Maillat Date: Sat, 29 Mar 2025 11:26:31 +0100 Subject: [PATCH] highlight install message --- lib/Alchemy/Phrasea/Command/Setup/Install.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }