This commit is contained in:
Justin 2025-02-28 08:33:08 +01:00
parent 5b72f9abd7
commit 579815f4b5

View File

@ -1,10 +1,10 @@
#!/bin/bash
# Define color codes
GREEN="\033[0;32m"
BLUE="\033[0;34m"
YELLOW="\033[1;33m"
NC="\033[0m" # No Color
GREEN='\e[32m'
BLUE='\e[34m'
YELLOW='\e[33m'
NC='\e[0m' # No Color
# Function for consistent log messages
log_success() { echo -e "${GREEN}[SUCCESS]${NC} $1"; }