diff options
Diffstat (limited to 'apps/files/lib')
-rw-r--r-- | apps/files/lib/Command/DeleteOrphanedFiles.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files/lib/Command/DeleteOrphanedFiles.php b/apps/files/lib/Command/DeleteOrphanedFiles.php index 966351e4da0..e090c739d9a 100644 --- a/apps/files/lib/Command/DeleteOrphanedFiles.php +++ b/apps/files/lib/Command/DeleteOrphanedFiles.php @@ -29,7 +29,8 @@ class DeleteOrphanedFiles extends Command { protected function configure(): void { $this ->setName('files:cleanup') - ->setDescription('cleanup filecache') + ->setDescription('Clean up orphaned filecache and mount entries') + ->setHelp('Deletes orphaned filecache and mount entries (those without an existing storage).') ->addOption('skip-filecache-extended', null, InputOption::VALUE_NONE, 'don\'t remove orphaned entries from filecache_extended'); } |