If I've understood correctly then it seems that @CommandLine(subcommandsRepeatable) breaks HelpCommand's ability to provide help for that command.
For example, given a tool with subcommandsRepeatable = true and a subcommand sub, then I'd expect tool help sub to provide the usage for the sub subcommand, but what I see is the usage for tool itself.
Is this expected to work already and I'm doing something wrong? Or does this seem like a bug?
(I'll aim to isolate an example together tomorrow, but thought it might be worth starting the conversation sooner...)
If I've understood correctly then it seems that
@CommandLine(subcommandsRepeatable)breaksHelpCommand's ability to provide help for that command.For example, given a
toolwithsubcommandsRepeatable = trueand a subcommandsub, then I'd expecttool help subto provide the usage for thesubsubcommand, but what I see is the usage fortoolitself.Is this expected to work already and I'm doing something wrong? Or does this seem like a bug?
(I'll aim to isolate an example together tomorrow, but thought it might be worth starting the conversation sooner...)