From b4af1cb11188f1080fb91a018f1e87a60ffcad7b Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Sun, 10 Mar 2024 22:19:59 +0100 Subject: [PATCH] Fix warning and error extension functions --- buildtool.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildtool.sh b/buildtool.sh index 706a008..cd691f2 100755 --- a/buildtool.sh +++ b/buildtool.sh @@ -38,7 +38,7 @@ function warnh() { } ## Warning (extension) function warne() { - echo -e "${BUILDTOOL_COLOR_WARN} : ${*}${BUILDTOOL_COLOR_RESET}" + echo -e "${BUILDTOOL_COLOR_WARN} ${*}${BUILDTOOL_COLOR_RESET}" } ## Error (header) function errorh() { @@ -46,7 +46,7 @@ function errorh() { } ## Error (extension) function errore() { - echo -e "${BUILDTOOL_COLOR_ERROR} : ${*}${BUILDTOOL_COLOR_RESET}" + echo -e "${BUILDTOOL_COLOR_ERROR} ${*}${BUILDTOOL_COLOR_RESET}" } # Banner