fix: clearly state fatal errors

This commit is contained in:
2025-12-29 20:01:44 -05:00
parent 351faa7e08
commit 529abb7c26

View File

@@ -12,6 +12,6 @@ func HandleError(err error) {
return return
} }
fmt.Fprintln(os.Stderr, err) fmt.Fprintln(os.Stderr, "ERROR:", err)
os.Exit(1) os.Exit(1)
} }