Clean up report when no new links

This commit is contained in:
Marc Plano-Lesay 2025-05-01 21:56:41 +10:00
parent 5ed96b8eb8
commit df2e6ab126
Signed by: kernald
GPG key ID: 66A41B08CC62A6CF

View file

@ -42,6 +42,11 @@ pub fn generate_report(
style(format!("({} new links)", total_count)).bold()
);
if failed_count == 0 && success_count == 0 {
info!("");
continue;
}
// Success/failure summary
if failed_count > 0 {
info!(