fix colours fallback

This commit is contained in:
buildplan 2025-10-16 19:07:16 +01:00
parent 67ca2ad617
commit 00812c610a

View File

@ -89,14 +89,14 @@ if command -v tput >/dev/null 2>&1 && tput setaf 1 >/dev/null 2>&1; then
BOLD=$(tput bold) BOLD=$(tput bold)
NC=$(tput sgr0) NC=$(tput sgr0)
else else
RED='\e[0;31m' RED=$'\e[0;31m'
GREEN='\e[0;32m' GREEN=$'\e[0;32m'
YELLOW='\e[1;33m' YELLOW=$'\e[1;33m'
BLUE='\e[0;34m' BLUE=$'\e[0;34m'
PURPLE='\e[0;35m' PURPLE=$'\e[0;35m'
CYAN='\e[0;36m' CYAN=$'\e[0;36m'
NC='\e[0m' NC=$'\e[0m'
BOLD='\e[1m' BOLD=$'\e[1m'
fi fi