Skip to content

Commit

Permalink
rename s3:ls to s3:list
Browse files Browse the repository at this point in the history
  • Loading branch information
mmattel committed Aug 20, 2018
1 parent 2dcf1fc commit 1714645
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ This extension is the successor of the [ownCloud Objectstore App](https://market
<filesystem/>
</types>
<commands>
<command>OCA\Files_Primary_S3\Command\ls</command>
<command>OCA\Files_Primary_S3\Command\s3list</command>
<command>OCA\Files_Primary_S3\Command\createBucket</command>
</commands>
</info>
4 changes: 2 additions & 2 deletions lib/command/ls.php → lib/command/list.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

require_once __DIR__ . '/../../vendor/autoload.php';

class ls extends Command {
class s3list extends Command {

/** @var IConfig */
private $config;
Expand All @@ -43,7 +43,7 @@ public function __construct(IConfig $config) {

protected function configure() {
$this
->setName('s3:ls')
->setName('s3:list')
->setDescription('List objects, buckets or versions of an object')
->addArgument('bucket', InputArgument::OPTIONAL, 'Name of the bucket; it`s objects will be listed')
->addArgument('object', InputArgument::OPTIONAL, 'Key of the object; it`s versions will be listed');
Expand Down

0 comments on commit 1714645

Please sign in to comment.