diff options
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/Upgrade.php | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php index 2a502dbe921..cadc1f8530c 100644 --- a/core/Command/Upgrade.php +++ b/core/Command/Upgrade.php @@ -76,13 +76,7 @@ class Upgrade extends Command { protected function configure() { $this ->setName('upgrade') - ->setDescription('run upgrade routines after installation of a new release. The release has to be installed before.') - ->addOption( - '--no-app-disable', - null, - InputOption::VALUE_NONE, - 'skips the disable of third party apps' - ); + ->setDescription('run upgrade routines after installation of a new release. The release has to be installed before.'); } /** @@ -108,9 +102,6 @@ class Upgrade extends Command { $this->installer ); - if ($input->getOption('no-app-disable')) { - $updater->setSkip3rdPartyAppsDisable(true); - } $dispatcher = \OC::$server->getEventDispatcher(); $progress = new ProgressBar($output); $progress->setFormat(" %message%\n %current%/%max% [%bar%] %percent:3s%%"); @@ -224,9 +215,6 @@ class Upgrade extends Command { $updater->listen('\OC\Updater', 'incompatibleAppDisabled', function ($app) use($output) { $output->writeln('<comment>Disabled incompatible app: ' . $app . '</comment>'); }); - $updater->listen('\OC\Updater', 'thirdPartyAppDisabled', function ($app) use ($output) { - $output->writeln('<comment>Disabled 3rd-party app: ' . $app . '</comment>'); - }); $updater->listen('\OC\Updater', 'checkAppStoreAppBefore', function ($app) use($output) { $output->writeln('<info>Checking for update of app ' . $app . ' in appstore</info>'); }); |