Merge pull request #403 from nnyyxxxx/testing-4

Replace remaining echo -e statement
This commit is contained in:
Chris Titus 2024-09-18 13:04:13 -05:00 committed by GitHub
commit 19b5336f34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -35,7 +35,7 @@ check() {
local message=$2
if [ $exit_code -ne 0 ]; then
echo -e "${RED}ERROR: $message${RC}"
printf "%b\n" "${RED}ERROR: $message${RC}"
exit 1
fi
}