From 1ae21d1e339144346f8ace6388cea5a0e686020d Mon Sep 17 00:00:00 2001 From: Morris Jobke Date: Tue, 2 Aug 2016 10:14:19 +0200 Subject: [PATCH] Rebranded to Nextcloud for the occ command line tool (#692) --- core/Command/Db/ConvertType.php | 2 +- core/Command/Upgrade.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/core/Command/Db/ConvertType.php b/core/Command/Db/ConvertType.php index 6e15f9afbc7..ccf5c0685cb 100644 --- a/core/Command/Db/ConvertType.php +++ b/core/Command/Db/ConvertType.php @@ -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, diff --git a/core/Command/Upgrade.php b/core/Command/Upgrade.php index 952034fd222..caf92492d90 100644 --- a/core/Command/Upgrade.php +++ b/core/Command/Upgrade.php @@ -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('ownCloud is in maintenance mode'); + //Possible scenario: Nextcloud core is updated but an app failed + $output->writeln('Nextcloud is in maintenance mode'); $output->write('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('ownCloud is already latest version'); + $output->writeln('Nextcloud is already latest version'); return self::ERROR_UP_TO_DATE; } } -- 2.39.5