diff --git a/Makefile b/Makefile index b430e10..6661b2d 100644 --- a/Makefile +++ b/Makefile @@ -41,12 +41,9 @@ c clean: ## remove the generated files define version_check_sh if git rev-parse -q --verify "refs/tags/${VERSION}" >/dev/null; then $(call tprint-verbose,{a.red}VERSION INVALID!{a.end} tag already exists); exit 1; -elif [[ "${VERSION}" == *'-'* ]]; then +elif [[ "${VERSION}" == *'-'* ]]; then $(call tprint-verbose,{a.red}VERSION INVALID!{a.end} Uncommited or untagged work); exit 1; exit 1 -elif [[ $(shell echo "${VERSION}" | awk -F. '{ print NF }') -lt 3 ]];then\ - $(call tprint-verbose,{a.red}VERSION INVALID!{a.end} Expected CalVer string) - exit 1 fi endef