From 6baf1bc3f761699cc1c817079dfb9d0713296ce9 Mon Sep 17 00:00:00 2001 From: Varun Patil Date: Fri, 13 Oct 2023 19:05:55 -0700 Subject: [PATCH] cmd: colorize places-setup output Signed-off-by: Varun Patil --- lib/Command/PlacesSetup.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Command/PlacesSetup.php b/lib/Command/PlacesSetup.php index d22213b82..895683647 100644 --- a/lib/Command/PlacesSetup.php +++ b/lib/Command/PlacesSetup.php @@ -63,7 +63,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int return 1; } - $this->output->writeln('Database support was detected'); + $this->output->writeln('Database support was detected'); // Check if database is already set up if ($this->places->geomCount() > 0 && !$recalculate && !$this->warnDownloaded()) { @@ -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('Places set up successfully'); return 0; }