Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions cli/src/command/stdio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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<bool>,
}

impl Command for StdioCommand {
Expand Down
Loading