From df2e6ab12693d92875c5a20d910eca965747f7c9 Mon Sep 17 00:00:00 2001 From: Marc Plano-Lesay Date: Thu, 1 May 2025 21:56:41 +1000 Subject: [PATCH] Clean up report when no new links --- src/report.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/report.rs b/src/report.rs index a5e99e7..4b520a0 100644 --- a/src/report.rs +++ b/src/report.rs @@ -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!(