Skip to content

Commit

Permalink
[BUGFIX] Fix no-docs input option
Browse files Browse the repository at this point in the history
Fixes TYPO3#38
  • Loading branch information
gilbertsoft committed Nov 17, 2021
1 parent c560c3b commit b419a07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Command/Extension/SetExtensionVersionCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ protected function configure(): void
->setDescription('Update the extensions ext_emconf.php version to a specific version. Useful in CI environments')
->addArgument('version', InputArgument::REQUIRED, 'The version to publish, e.g. 1.2.3. Must have three digits.')
->addOption('path', '', InputOption::VALUE_OPTIONAL, 'Path to the extension folder', getcwd() ?: './')
->addOption('no-docs', '', InputOption::VALUE_OPTIONAL, 'Disable version update in documentation settings', false);
->addOption('no-docs', '', InputOption::NO_VALUE, 'Disable version update in documentation settings');
}

protected function execute(InputInterface $input, OutputInterface $output): int
Expand Down

0 comments on commit b419a07

Please sign in to comment.