Skip to content

Commit 58bebfa

Browse files
fixed backups creation output message
1 parent 816b711 commit 58bebfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Classes/Command/BackupCommandController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ public function createCommand(): void
2727
$this->output('Creating backup...');
2828

2929
if (!$this->backupService->createBackup()) {
30-
$this->outputLine('<error>couldn\'t create backup</error>');
30+
$this->outputLine('<error>failed</error>');
3131
$this->quit();
3232
}
3333

34-
$this->outputLine('<success>backup created</success>');
34+
$this->outputLine('<success>success</success>');
3535
}
3636

3737
/**

0 commit comments

Comments
 (0)