From 529abb7c2644a0ee592cfef5e50c2ab22e7cccaf Mon Sep 17 00:00:00 2001 From: Max Date: Mon, 29 Dec 2025 20:01:44 -0500 Subject: [PATCH] fix: clearly state fatal errors --- internal/cli/exit.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cli/exit.go b/internal/cli/exit.go index 32cfc5e..9f97d16 100644 --- a/internal/cli/exit.go +++ b/internal/cli/exit.go @@ -12,6 +12,6 @@ func HandleError(err error) { return } - fmt.Fprintln(os.Stderr, err) + fmt.Fprintln(os.Stderr, "ERROR:", err) os.Exit(1) }