From e17bbe6402ab366e1a6ab022b4194b02646bf0d3 Mon Sep 17 00:00:00 2001 From: mrfry Date: Mon, 10 Apr 2023 11:21:52 +0200 Subject: [PATCH] make prints in red if error --- make.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make.sh b/make.sh index 496c8ee..5f7a09c 100755 --- a/make.sh +++ b/make.sh @@ -3,7 +3,7 @@ scriptPath=$(dirname -- "${0}") domainPath="${scriptPath}/../../data/domain" if [ ! -f "${domainPath}" ]; then - echo "${domainPath} does not exist!" + echo -e "\033[0;41m${domainPath} does not exist!\033[0m" exit 1 fi domain=$(cat "${domainPath}")