]> source.dussan.org Git - nextcloud-server.git/commitdiff
Rebranded to Nextcloud for the occ command line tool (#692)
authorMorris Jobke <hey@morrisjobke.de>
Tue, 2 Aug 2016 08:14:19 +0000 (10:14 +0200)
committerMarius Blüm <marius@lineone.io>
Tue, 2 Aug 2016 08:14:19 +0000 (10:14 +0200)
core/Command/Db/ConvertType.php
core/Command/Upgrade.php

index 6e15f9afbc7542eebbd5cd473a180e828d49d942..ccf5c0685cba207a84fd77f02613546bfa99b064 100644 (file)
@@ -61,7 +61,7 @@ class ConvertType extends Command {
        protected function configure() {
                $this
                        ->setName('db:convert-type')
-                       ->setDescription('Convert the ownCloud database to the newly configured one')
+                       ->setDescription('Convert the Nextcloud database to the newly configured one')
                        ->addArgument(
                                'type',
                                InputArgument::REQUIRED,
index 952034fd222910f8ac0db11d226d1ecd939fde9a..caf92492d9069132f17824a37799986fbbfe03e1 100644 (file)
@@ -299,8 +299,8 @@ class Upgrade extends Command {
 
                        return self::ERROR_SUCCESS;
                } else if($this->config->getSystemValue('maintenance', false)) {
-                       //Possible scenario: ownCloud core is updated but an app failed
-                       $output->writeln('<warning>ownCloud is in maintenance mode</warning>');
+                       //Possible scenario: Nextcloud core is updated but an app failed
+                       $output->writeln('<warning>Nextcloud is in maintenance mode</warning>');
                        $output->write('<comment>Maybe an upgrade is already in process. Please check the '
                                . 'logfile (data/nextcloud.log). If you want to re-run the '
                                . 'upgrade procedure, remove the "maintenance mode" from '
@@ -308,7 +308,7 @@ class Upgrade extends Command {
                                , true);
                        return self::ERROR_MAINTENANCE_MODE;
                } else {
-                       $output->writeln('<info>ownCloud is already latest version</info>');
+                       $output->writeln('<info>Nextcloud is already latest version</info>');
                        return self::ERROR_UP_TO_DATE;
                }
        }