From fc5dab745ddf8057751e41f623d1dc28373e0394 Mon Sep 17 00:00:00 2001 From: Suhas Karanth Date: Tue, 30 Aug 2022 17:50:05 +0530 Subject: [PATCH] fix(lint): format error message with appropriate line breaks --- cmd/lint.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/lint.go b/cmd/lint.go index 5e944778c..19618a01b 100644 --- a/cmd/lint.go +++ b/cmd/lint.go @@ -124,7 +124,7 @@ func printLintErrors(errs []error, rcp recipe.Recipe) { printConfigErrors(rcp, invalidConfigError) continue } - fmt.Printf("recipe error: %s", err.Error()) + fmt.Printf("recipe error: %s\n", err.Error()) } }