diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-05-12 18:02:31 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-05-12 18:02:31 +0200 |
commit | cb909cda97c7ea950dd0862340d6369109c971e7 (patch) | |
tree | c9b22daf0d5c37fa70122121ff64e369da372000 /core | |
parent | d4eff55342500603584b6526fc239bc9bd66a4a5 (diff) | |
download | nextcloud-server-cb909cda97c7ea950dd0862340d6369109c971e7.tar.gz nextcloud-server-cb909cda97c7ea950dd0862340d6369109c971e7.zip |
Add info message for upgrade of an 3rdparty app
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>'); }); |