Skip to content

Commit

Permalink
fix: Fix fcli completion script sourcing error (fixes #580)
Browse files Browse the repository at this point in the history
  • Loading branch information
rsenden committed Sep 27, 2024
1 parent 5260bc8 commit 4ff86f4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@

public abstract class AbstractActionRunCommand extends AbstractRunnableCommand {
@Mixin private ActionResolverMixin.RequiredParameter actionResolver;
@DisableTest({TestType.MULTI_OPT_SPLIT, TestType.MULTI_OPT_PLURAL_NAME, TestType.OPT_LONG_NAME})
@Option(names="--<action-parameter>", paramLabel="<value>", descriptionKey="fcli.action.run.action-parameter")
@DisableTest({TestType.MULTI_OPT_SPLIT, TestType.MULTI_OPT_PLURAL_NAME, TestType.OPT_LONG_NAME, TestType.OPT_LONG_NAME_COUNT, TestType.OPT_NAME_FORMAT, TestType.OPT_ARITY_PRESENT})
@Option(names="action-parameters", arity="0", descriptionKey="fcli.action.run.action-parameter")
private List<String> dummyForSynopsis;
@Mixin private ProgressWriterFactoryMixin progressWriterFactory;
@Mixin private CommandHelperMixin commandHelper;
Expand Down

0 comments on commit 4ff86f4

Please sign in to comment.