Skip to content

Commit

Permalink
cmd: colorize places-setup output
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Patil <[email protected]>
  • Loading branch information
pulsejet committed Oct 14, 2023
1 parent 99dfbef commit 6baf1bc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Command/PlacesSetup.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int

return 1;
}
$this->output->writeln('Database support was detected');
$this->output->writeln('<info>Database support was detected</info>');

// Check if database is already set up
if ($this->places->geomCount() > 0 && !$recalculate && !$this->warnDownloaded()) {
Expand All @@ -82,7 +82,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
// Recalculate all places
$this->places->recalculateAll();

$this->output->writeln('Places set up successfully');
$this->output->writeln('<info>Places set up successfully</info>');

return 0;
}
Expand Down

0 comments on commit 6baf1bc

Please sign in to comment.