Skip to content

Commit

Permalink
occ: remove retry shorthand
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Patil <[email protected]>
  • Loading branch information
pulsejet committed Mar 11, 2024
1 parent e8b84a0 commit bf6aead
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/occ-commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Options:
--folder=FOLDER Index only the specified folder (relative to the user's root)
-f, --force Force refresh of existing index entries
--clear Clear all existing index entries
--retry Retry indexing of failed files
--skip-cleanup Skip cleanup step (removing index entries with missing files)
```

Expand Down
2 changes: 1 addition & 1 deletion lib/Command/Index.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ protected function configure(): void
->addOption('folder', null, InputOption::VALUE_REQUIRED, 'Index only the specified folder (relative to the user\'s root)')
->addOption('force', 'f', InputOption::VALUE_NONE, 'Force refresh of existing index entries')
->addOption('clear', null, InputOption::VALUE_NONE, 'Clear all existing index entries')
->addOption('retry', 'r', InputOption::VALUE_NONE, 'Retry indexing of failed files')
->addOption('retry', null, InputOption::VALUE_NONE, 'Retry indexing of failed files')
->addOption('skip-cleanup', null, InputOption::VALUE_NONE, 'Skip cleanup step (removing index entries with missing files)')
;
}
Expand Down

0 comments on commit bf6aead

Please sign in to comment.