From 7028853169d9ada8ac58260dd9c30da94a96c77f Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Thu, 19 Jan 2023 21:43:16 -0600 Subject: [PATCH] style: less red --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f957c05..80b77a2 100644 --- a/Makefile +++ b/Makefile @@ -45,10 +45,10 @@ c clean: ## remove the generated files define version_check_sh if [[ "${VERSION}" == *'-'* ]]; then - $(call tprint-sh,{a.red}VERSION INVALID! Uncommited or untagged work{a.end}) + $(call tprint-sh,{a.red}VERSION INVALID!{a.end} Uncommited or untagged work) exit 1 elif [[ $(shell echo "${VERSION}" | awk -F. '{ print NF }') -lt 3 ]];then\ - $(call tprint-sh,{a.red}VERSION INVALID! Expected CalVer string{a.end}) + $(call tprint-sh,{a.red}VERSION INVALID!{a.end} Expected CalVer string) exit 1 fi endef