diff --git a/cli/src/command/stdio.rs b/cli/src/command/stdio.rs index 69304f8e9..c6abcd3a8 100644 --- a/cli/src/command/stdio.rs +++ b/cli/src/command/stdio.rs @@ -27,6 +27,7 @@ use pna::Archive; use std::{env, fs, io, path::PathBuf, sync::Arc, time::SystemTime}; #[derive(Args, Clone, Debug)] +#[clap(disable_help_flag = true)] #[command( version, disable_version_flag = true, @@ -376,6 +377,8 @@ pub(crate) struct StdioCommand { ignore_zeros: bool, #[arg(long, action = clap::ArgAction::Version, help = "Print version")] version: (), + #[arg(long, action = clap::ArgAction::Help)] + help: Option, } impl Command for StdioCommand {