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 authored and marcospb19 committed Dec 14, 2024
1 parent 5941afe commit 499ad77
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 499ad77

Please sign in to comment.