From 76ea78e0d73a2f7417974ea78d57fcddd4e5aa78 Mon Sep 17 00:00:00 2001 From: Pritesh Bandi Date: Sun, 20 Aug 2023 21:44:43 -0700 Subject: [PATCH] Update cli/utils.go Co-authored-by: Shiwei Zhang Signed-off-by: Pritesh Bandi --- cli/utils.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/utils.go b/cli/utils.go index 24d0cf0..6398209 100644 --- a/cli/utils.go +++ b/cli/utils.go @@ -49,6 +49,6 @@ func getMetadata(ctx context.Context, p plugin.Plugin) *plugin.GetMetadataRespon // deliverError print to standard error and then return nonzero exit code func deliverError(message string) { - _, _ = fmt.Fprintf(os.Stderr, message) + _, _ = fmt.Fprintln(os.Stderr, message) os.Exit(1) }