diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-08-10 00:24:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-10 00:24:02 +0200 |
commit | 2b04b58d9a16d99acbcf8624ae0f01aa1c109de9 (patch) | |
tree | 08c430906f690d67d6887f83a65911c7348f8b2e | |
parent | 3d54f1151f2ea6efe0030db8d3659395867c2517 (diff) | |
parent | e783006fe26ef8752637bc3f57082acbe90a93a0 (diff) | |
download | nextcloud-server-2b04b58d9a16d99acbcf8624ae0f01aa1c109de9.tar.gz nextcloud-server-2b04b58d9a16d99acbcf8624ae0f01aa1c109de9.zip |
Merge pull request #783 from nextcloud/app-disable-yellow
make disabled apps more clear during upgrade
-rw-r--r-- | core/Command/Upgrade.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php index 77d67534c6a..69354272de8 100644 --- a/core/Command/Upgrade.php +++ b/core/Command/Upgrade.php @@ -250,10 +250,10 @@ class Upgrade extends Command { $output->writeln('<info>Checked database schema update</info>'); }); $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) { - $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) { $output->writeln('<info>Update 3rd-party app: ' . $app . '</info>'); |