This commit is contained in:
jamesk 2024-03-29 16:50:09 -04:00
parent 7ebdcd1214
commit b972314d5b

View File

@ -19,7 +19,11 @@ fn main() {
create.run() create.run()
}, },
Commands::Compare { left, right, selection, count_only } => { Commands::Compare { left, right, selection, count_only } => {
if let Some(count_only) = count_only {
if !count_only {
println!("Running snapshot comparison.."); println!("Running snapshot comparison..");
}
}
let mut compare = CompareMode::new(movable.clone(), left, right, selection, count_only); let mut compare = CompareMode::new(movable.clone(), left, right, selection, count_only);
compare.run() compare.run()
} }