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() }