diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/command/upgrade.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/command/upgrade.php b/core/command/upgrade.php index 6d01288a404..7f5d943bb8b 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -130,6 +130,9 @@ class Upgrade extends Command { $updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use($output) { $output->writeln('<info>Disabled 3rd-party app: ' . $app . '</info>'); }); + $updater->listen('\OC\Updater', 'upgradeAppStoreApp', function ($app) use($output) { + $output->writeln('<info>Update 3rd-party app: ' . $app . '</info>'); + }); $updater->listen('\OC\Updater', 'repairWarning', function ($app) use($output) { $output->writeln('<error>Repair warning: ' . $app . '</error>'); }); |