Skip to content

Commit 301cd15

Browse files
authored
highlight install message
1 parent 59ac346 commit 301cd15

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/Alchemy/Phrasea/Command/Setup/Install.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ protected function doExecute(InputInterface $input, OutputInterface $output)
9494
/** @var DialogHelper $dialog */
9595
$dialog = $this->getHelperSet()->get('dialog');
9696

97-
$output->writeln("<comment>You are on your way to install Phraseanet, You will need access to 2 MySQL databases.</comment>");
97+
$output->writeln("<comment> --- You are on your way to install Phraseanet, You will need access to 2 MySQL databases. --- </comment>");
9898

9999
if (!$input->getOption('yes') && !$input->getOption('force') && !$input->getOption('appbox')) {
100100
$continue = $dialog->askConfirmation($output, 'Do you have these two DB handy ? (N/y)', false);
@@ -115,15 +115,15 @@ protected function doExecute(InputInterface $input, OutputInterface $output)
115115
}
116116

117117
if (!$input->getOption('force') && $abConn->getSchemaManager()->tablesExist(['users'])) {
118-
$output->writeln("<error>Database table already exist in appbox! installation abort</error>");
118+
$output->writeln("<error>(*) Database table already exist in appbox! installation abort</error>");
119119

120120
return 1;
121121
}
122122

123123
list($dbConn, $templateName) = $this->getDBConn($input, $output, $abConn, $dialog);
124124

125125
if (!$input->getOption('force') && $dbConn->getSchemaManager()->tablesExist(['record'])) {
126-
$output->writeln("<error>Database table already exist in databox! installation abort</error>");
126+
$output->writeln("<error>(*) Database table already exist in databox! installation abort</error>");
127127

128128
return 1;
129129
}

0 commit comments

Comments
 (0)