fix(cli): remove default value for remove flag in Subcommand

This commit is contained in:
ttyS3 2024-12-03 17:01:06 +00:00 committed by ttys3
parent cc6e85ef18
commit cbba01803a

View File

@ -90,7 +90,7 @@ pub enum Subcommand {
output_dir: Option<PathBuf>, output_dir: Option<PathBuf>,
/// Remove the source file after successful decompression /// Remove the source file after successful decompression
#[arg(short = 'r', long, default_value_t = false)] #[arg(short = 'r', long)]
remove: bool, remove: bool,
}, },
/// List contents of an archive /// List contents of an archive