From 3e511446aaf61e16d8faaa5f980807dff0d25aae Mon Sep 17 00:00:00 2001 From: decentral1se Date: Mon, 9 Oct 2023 22:53:46 +0200 Subject: [PATCH] refactor: use `app check` emoji here too --- cli/recipe/lint.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/recipe/lint.go b/cli/recipe/lint.go index a01d3ecc8..542164f99 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 = "-" }