From f6de3e6759371112b84616830aff363f43942c7c Mon Sep 17 00:00:00 2001 From: dark0dave Date: Sat, 11 Nov 2023 16:36:29 +0000 Subject: [PATCH] fix(skip_installed): Skip installed should set be true when set Signed-off-by: dark0dave --- src/args.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/args.rs b/src/args.rs index 216c4ae..10cce29 100644 --- a/src/args.rs +++ b/src/args.rs @@ -38,7 +38,7 @@ pub struct Args { pub depth: usize, /// Compare against installed weidu log, note this is best effort - #[clap(long, short, action=ArgAction::SetFalse)] + #[clap(long, short, action=ArgAction::SetTrue)] pub skip_installed: bool, }