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:
authorJoas Schilling <coding@schilljs.com>2016-09-21 01:47:45 +0300
committerMorris Jobke <hey@morrisjobke.de>2016-09-29 16:57:10 +0300
commit5551c6311025e432525a75ecda4d99fbeec913a6 (patch)
treecf0d5fb8d6402364ea5add294e5dd7fb210ca16c /core/register_command.php
parent5cce64bfcc45b9b7be73f55bc78e22642c7ffaaf (diff)
Register the auto completion basic
Signed-off-by: Joas Schilling <coding@schilljs.com>
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 6a220c22b3f..23621e54f8d 100644
--- a/core/register_command.php
+++ b/core/register_command.php
@@ -33,6 +33,7 @@
*/
/** @var $application Symfony\Component\Console\Application */
+$application->add(new \Stecman\Component\Symfony\Console\BashCompletion\CompletionCommand());
$application->add(new OC\Core\Command\Status);
$application->add(new OC\Core\Command\Check(\OC::$server->getConfig()));
$infoParser = new \OC\App\InfoParser(\OC::$server->getURLGenerator());