From e237ac54cce97d91866f487f5d795b8f7d79fc9a Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Mon, 6 Oct 2025 16:25:45 +0200 Subject: [PATCH] fix(RepairTree): Update files:repair-tree description to note that running the command multiple times may be necessary Signed-off-by: Marcel Klehr --- apps/files/lib/Command/RepairTree.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files/lib/Command/RepairTree.php b/apps/files/lib/Command/RepairTree.php index e5b28983cf25e..3f7da68fb229e 100644 --- a/apps/files/lib/Command/RepairTree.php +++ b/apps/files/lib/Command/RepairTree.php @@ -25,7 +25,7 @@ public function __construct( protected function configure(): void { $this ->setName('files:repair-tree') - ->setDescription('Try and repair malformed filesystem tree structures') + ->setDescription('Try and repair malformed filesystem tree structures (may be necessary to run multiple times for nested malformations)') ->addOption('dry-run'); }