From 8b67c33fa7adce56ab17a11cc708dea70b82bd34 Mon Sep 17 00:00:00 2001 From: Uwe Steinmann Date: Thu, 13 Nov 2025 18:57:22 +0100 Subject: [PATCH] fix description and help text --- utils/Commands/PackageextensionCommand.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/Commands/PackageextensionCommand.php b/utils/Commands/PackageextensionCommand.php index 7a8fef84d..e4e5ffe7f 100644 --- a/utils/Commands/PackageextensionCommand.php +++ b/utils/Commands/PackageextensionCommand.php @@ -38,8 +38,8 @@ class PackageextensionCommand extends Command protected function configure() { $this->setName('ext:package') - ->setDescription('Package extension as a zip file. If --output-dir is given, the zip file will be placed into this directory otherwise it will be saved in the current directory. The name of the zip file will be -.zip. If such a file already exists, it will be deleted and recreated.') - ->setHelp('Creates a zip file of an extension, which can be uploaded into SeedDMS.') + ->setDescription('Package extension as a zip file') + ->setHelp('Creates a zip file of an extension, which can be uploaded into SeedDMS. If --output-dir is given, the zip file will be placed into this directory otherwise it will be saved in the current directory. The name of the zip file will be -.zip. If such a file already exists, it will be deleted and recreated.') ->addOption('name', '', InputOption::VALUE_REQUIRED, 'Name of extension.', null) ->addOption('output-dir', '', InputOption::VALUE_REQUIRED, 'Name of directory where the zip file is saved.', null) ;