From 2106c69271716c0c7a76e9a200b96b83764f31c8 Mon Sep 17 00:00:00 2001 From: Sebastian Kuzminsky Date: Tue, 8 Jul 2025 11:10:03 -0600 Subject: [PATCH] `ent sync`: report success if it all worked --- src/bin/ent/main.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/ent/main.rs b/src/bin/ent/main.rs index 1363641..10d0637 100644 --- a/src/bin/ent/main.rs +++ b/src/bin/ent/main.rs @@ -180,6 +180,7 @@ fn handle_command(args: &Args, issues_dir: &std::path::Path) -> anyhow::Result<( None => "entomologist-data", }; entomologist::git::sync(issues_dir, remote, branch)?; + println!("synced {:?} with {:?}", branch, remote); } }