Skip to content

Commit

Permalink
fix(cli): remove default value for remove flag in Subcommand
Browse files Browse the repository at this point in the history
  • Loading branch information
ttys3 committed Dec 9, 2024
1 parent cc6e85e commit cbba018
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ pub enum Subcommand {
output_dir: Option<PathBuf>,

/// Remove the source file after successful decompression
#[arg(short = 'r', long, default_value_t = false)]
#[arg(short = 'r', long)]
remove: bool,
},
/// List contents of an archive
Expand Down

0 comments on commit cbba018

Please sign in to comment.