From c3e486698fb05f3dbb95b40a77242ed72ffe8e6d Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Sun, 14 Jul 2024 11:29:23 +0200 Subject: [PATCH] add stats --- usr/bin/archboot-testsuite.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/bin/archboot-testsuite.sh b/usr/bin/archboot-testsuite.sh index 49f4fef67..ccb951e8d 100755 --- a/usr/bin/archboot-testsuite.sh +++ b/usr/bin/archboot-testsuite.sh @@ -170,9 +170,9 @@ archboot-not-installed.sh &>>"${_LOG}" _result not-installed.txt echo "\e[1mResult:\e[m" if [[ -z "${_TEST_FAIL}" ]]; then - echo "\e[1;94m=> \e[1;92mAll tests finished successfully.\e[m" + echo -e "\e[1;94m=> \e[1;92mAll tests finished successfully.\e[m" else - echo "\e[1;94m=> \e[1;91mAn error was detected. Please check the corresponding log files.\e[m" + echo -e "\e[1;94m=> \e[1;91mAn error was detected. Please check the corresponding log files.\e[m" exit 1 fi # vim: set ft=sh ts=4 sw=4 et: