From b972314d5b893d8bce67a51ea73b957826d3d3aa Mon Sep 17 00:00:00 2001 From: jamesk Date: Fri, 29 Mar 2024 16:50:09 -0400 Subject: [PATCH] . --- src/main.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 641b8a8..901f717 100644 --- a/src/main.rs +++ b/src/main.rs @@ -19,7 +19,11 @@ fn main() { create.run() }, Commands::Compare { left, right, selection, count_only } => { - println!("Running snapshot comparison.."); + if let Some(count_only) = count_only { + if !count_only { + println!("Running snapshot comparison.."); + } + } let mut compare = CompareMode::new(movable.clone(), left, right, selection, count_only); compare.run() }