Skip to content

Commit

Permalink
process comments
Browse files Browse the repository at this point in the history
  • Loading branch information
antedebaas committed Nov 18, 2024
1 parent 443a808 commit 4fe67ed
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Command/UpdateDatabaseCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,12 +116,11 @@ protected function execute(InputInterface $input, OutputInterface $output): int
$io->section(sprintf('Update "%s" database', $database));

if (empty($this->databases[$database]['license'])) {
$io->warning(sprintf('`GeoIP Database %s has no maxmind license key', $database));
$io->warning(sprintf('GeoIP Database %s has no maxmind license key', $database));
} else {
$this->downloader->download($this->databases[$database]['url'], $this->databases[$database]['path']);
$io->comment(sprintf('Database <info>%s</info> updated', $database));
}

$io->comment(sprintf('Database <info>%s</info> updated', $database));
}

$io->success('Finished updating');
Expand Down

0 comments on commit 4fe67ed

Please sign in to comment.