Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Gerber <micha_g@arcor.de>2018-09-04 23:26:15 +0300
committerMorris Jobke <hey@morrisjobke.de>2018-11-01 19:13:12 +0300
commit020a9add07ea549c8408d4364e01492e5c138830 (patch)
tree535af6e7050e075a4b7901b5e432ede5b07a5cfe /core/register_command.php
parent35a7ea869e4d63761e4a11c3d96a77a6a5e3418f (diff)
Add occ app:update command
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/register_command.php')
-rw-r--r--core/register_command.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php
index 9c3591c8afe..fb029f1be4a 100644
--- a/core/register_command.php
+++ b/core/register_command.php
@@ -66,6 +66,7 @@ if (\OC::$server->getConfig()->getSystemValue('installed', false)) {
$application->add(new OC\Core\Command\App\GetPath());
$application->add(new OC\Core\Command\App\ListApps(\OC::$server->getAppManager()));
$application->add(new OC\Core\Command\App\Remove(\OC::$server->getAppManager(), \OC::$server->query(\OC\Installer::class), \OC::$server->getLogger()));
+ $application->add(\OC::$server->query(\OC\Core\Command\App\Update::class));
$application->add(\OC::$server->query(\OC\Core\Command\TwoFactorAuth\Cleanup::class));
$application->add(\OC::$server->query(\OC\Core\Command\TwoFactorAuth\Enforce::class));