From cbba01803a3bc6ba60752de279a5dda25dceec4c Mon Sep 17 00:00:00 2001 From: ttyS3 Date: Tue, 3 Dec 2024 17:01:06 +0000 Subject: [PATCH] fix(cli): remove default value for remove flag in Subcommand --- src/cli/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/args.rs b/src/cli/args.rs index c07e85c9..72169627 100644 --- a/src/cli/args.rs +++ b/src/cli/args.rs @@ -90,7 +90,7 @@ pub enum Subcommand { output_dir: Option, /// 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