From 02f682b156998a3f3f94fd506867c28eba878da9 Mon Sep 17 00:00:00 2001 From: Vincent Petry Date: Tue, 27 May 2014 15:20:33 +0200 Subject: Now showing disabled apps as upgrade status line - Added app id in update overview. - Added status message for disabled app for CLI upgrade and web upgrade --- core/command/upgrade.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'core/command') diff --git a/core/command/upgrade.php b/core/command/upgrade.php index ed72d136e24..8ce8ef9b6e5 100644 --- a/core/command/upgrade.php +++ b/core/command/upgrade.php @@ -56,6 +56,9 @@ class Upgrade extends Command { $updater->listen('\OC\Updater', 'dbUpgrade', function () use($output) { $output->writeln('Updated database'); }); + $updater->listen('\OC\Updater', 'disabledApps', function ($appList) use($output) { + $output->writeln('Disabled incompatible apps: ' . implode(', ', $appList) . ''); + }); $updater->listen('\OC\Updater', 'failure', function ($message) use($output) { $output->writeln($message); -- cgit v1.2.3