Skip to content

Commit

Permalink
Rebranded to Nextcloud for the occ command line tool
Browse files Browse the repository at this point in the history
  • Loading branch information
sndrr authored and MorrisJobke committed Aug 1, 2016
1 parent ab18c72 commit 6727e97
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/Command/Db/ConvertType.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public function __construct(IConfig $config, ConnectionFactory $connectionFactor
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,
Expand Down
6 changes: 3 additions & 3 deletions core/Command/Upgrade.php
Original file line number Diff line number Diff line change
Expand Up @@ -299,16 +299,16 @@ function ($success) use($output, $updateStepEnabled, $self) {

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 '
. 'config.php and call this script again.</comment>'
, 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;
}
}
Expand Down

0 comments on commit 6727e97

Please sign in to comment.