mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Missed one write()->writeln(). Fixed.
This commit is contained in:
parent
bca1e12597
commit
f130caa4a2
1 changed files with 1 additions and 1 deletions
|
|
@ -49,7 +49,7 @@ class Upgrade extends Command {
|
|||
$output->writeln('Turned on maintenance mode');
|
||||
});
|
||||
$updater->listen('\OC\Updater', 'maintenanceEnd', function () use($output) {
|
||||
$output->write('Turned off maintenance mode');
|
||||
$output->writeln('Turned off maintenance mode');
|
||||
$output->writeln('Update successful');
|
||||
});
|
||||
$updater->listen('\OC\Updater', 'dbUpgrade', function () use($output) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue