From 5f49036a4d2cb77054e916acdf63f7ad3088424c Mon Sep 17 00:00:00 2001 From: "Thomas G. Lopes" Date: Thu, 19 Feb 2026 16:51:38 +0000 Subject: [PATCH] Prompt before pruning with count --- main.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.go b/main.go index 6661c1c..14b28d0 100644 --- a/main.go +++ b/main.go @@ -129,7 +129,8 @@ func applyCmd(args []string) error { return removeLinks(stales) } - ok, err := promptYesNo("Found stale links. Prune them?", false) + fmt.Printf("Stale links found: %d\n", len(stales)) + ok, err := promptYesNo("Prune them?", false) if err != nil { return err }