diff options
author | Daniel Hansson <daniel@techandme.se> | 2016-07-28 20:55:26 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-28 20:55:26 +0200 |
commit | 0b4789b162032bcc3054c8c49d1fb9a2f3bfa00a (patch) | |
tree | d4d69b8f4e90c05939b344a979a8781d37d7a82c /core/Command | |
parent | 2defd920836bf08961fd9f712ae6c230526ac852 (diff) | |
download | nextcloud-server-0b4789b162032bcc3054c8c49d1fb9a2f3bfa00a.tar.gz nextcloud-server-0b4789b162032bcc3054c8c49d1fb9a2f3bfa00a.zip |
ownCloud -> Nextcloud
Diffstat (limited to 'core/Command')
-rw-r--r-- | core/Command/Maintenance/Install.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Command/Maintenance/Install.php b/core/Command/Maintenance/Install.php index c8a7e889121..4e84becf770 100644 --- a/core/Command/Maintenance/Install.php +++ b/core/Command/Maintenance/Install.php @@ -50,7 +50,7 @@ class Install extends Command { protected function configure() { $this ->setName('maintenance:install') - ->setDescription('install ownCloud') + ->setDescription('install Nextcloud') ->addOption('database', null, InputOption::VALUE_REQUIRED, 'Supported database type', 'sqlite') ->addOption('database-name', null, InputOption::VALUE_REQUIRED, 'Name of the database') ->addOption('database-host', null, InputOption::VALUE_REQUIRED, 'Hostname of the database', 'localhost') @@ -77,7 +77,7 @@ class Install extends Command { // ignore the OS X setup warning if(count($errors) !== 1 || - (string)($errors[0]['error']) !== 'Mac OS X is not supported and ownCloud will not work properly on this platform. Use it at your own risk! ') { + (string)($errors[0]['error']) !== 'Mac OS X is not supported and Nextcloud will not work properly on this platform. Use it at your own risk! ') { return 1; } } @@ -91,7 +91,7 @@ class Install extends Command { $this->printErrors($output, $errors); return 1; } - $output->writeln("ownCloud was successfully installed"); + $output->writeln("Nextcloud was successfully installed"); return 0; } |