Do not create help for wrapped command (#11235)

Pretty self-explanatory.  The commit is only one `if`.

Fix #11096
This commit is contained in:
Andrej Kolchin
2023-12-05 19:04:36 +00:00
committed by GitHub
parent fb3350ebc3
commit 05d7d6d6ad
2 changed files with 9 additions and 1 deletions

View File

@ -580,7 +580,9 @@ pub fn parse_def(
let declaration = working_set.get_decl_mut(decl_id);
signature.name = name.clone();
*signature = signature.add_help();
if !has_wrapped {
*signature = signature.add_help();
}
signature.usage = usage;
signature.extra_usage = extra_usage;
signature.allows_unknown_args = has_wrapped;