diff --git a/cli/recipe/lint.go b/cli/recipe/lint.go index a01d3ecc..542164f9 100644 --- a/cli/recipe/lint.go +++ b/cli/recipe/lint.go @@ -68,7 +68,7 @@ var recipeLintCommand = cli.Command{ skippedOutput := "-" if skipped { - skippedOutput = "yes" + skippedOutput = "✅" } satisfied := false @@ -87,9 +87,9 @@ var recipeLintCommand = cli.Command{ } } - satisfiedOutput := "yes" + satisfiedOutput := "✅" if !satisfied { - satisfiedOutput = "NO" + satisfiedOutput = "❌" if skipped { satisfiedOutput = "-" }