Skip to content
Snippets Groups Projects
Commit 2b04b58d authored by Lukas Reschke's avatar Lukas Reschke Committed by GitHub
Browse files

Merge pull request #783 from nextcloud/app-disable-yellow

make disabled apps more clear during upgrade
parents 3d54f115 e783006f
No related branches found
No related tags found
No related merge requests found
...@@ -250,10 +250,10 @@ class Upgrade extends Command { ...@@ -250,10 +250,10 @@ class Upgrade extends Command {
$output->writeln('<info>Checked database schema update</info>'); $output->writeln('<info>Checked database schema update</info>');
}); });
$updater->listen('\OC\Updater', 'incompatibleAppDisabled', function ($app) use($output) { $updater->listen('\OC\Updater', 'incompatibleAppDisabled', function ($app) use($output) {
$output->writeln('<info>Disabled incompatible app: ' . $app . '</info>'); $output->writeln('<comment>Disabled incompatible app: ' . $app . '</comment>');
}); });
$updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use ($output) { $updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use ($output) {
$output->writeln('<info>Disabled 3rd-party app: ' . $app . '</info>'); $output->writeln('<comment>Disabled 3rd-party app: ' . $app . '</comment>');
}); });
$updater->listen('\OC\Updater', 'upgradeAppStoreApp', function ($app) use($output) { $updater->listen('\OC\Updater', 'upgradeAppStoreApp', function ($app) use($output) {
$output->writeln('<info>Update 3rd-party app: ' . $app . '</info>'); $output->writeln('<info>Update 3rd-party app: ' . $app . '</info>');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment