mirror of
https://github.com/nextcloud/server.git
synced 2026-03-02 13:31:14 -05:00
Merge pull request #36274 from nextcloud/backport/36264/stable25
[stable25] fix(occ): Fix comment formatting of maintenance:repair command
This commit is contained in:
commit
b1b887bcad
1 changed files with 1 additions and 1 deletions
|
|
@ -136,7 +136,7 @@ class Repair extends Command {
|
|||
} elseif ($event instanceof RepairInfoEvent) {
|
||||
$this->output->writeln('<info> - ' . $event->getMessage() . '</info>');
|
||||
} elseif ($event instanceof RepairWarningEvent) {
|
||||
$this->output->writeln('<comment> - WARNING: ' . $event->getMessage()) . '</comment>';
|
||||
$this->output->writeln('<comment> - WARNING: ' . $event->getMessage() . '</comment>');
|
||||
} elseif ($event instanceof RepairErrorEvent) {
|
||||
$this->output->writeln('<error> - ERROR: ' . $event->getMessage() . '</error>');
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue