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) }