From 303bda4c6eef35c0cf624b2c86e78746ec5b1214 Mon Sep 17 00:00:00 2001 From: uprightbass360 Date: Sun, 26 Oct 2025 21:12:33 -0400 Subject: [PATCH] fix: color format in status --- status.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/status.sh b/status.sh index 60b3543..e30a811 100755 --- a/status.sh +++ b/status.sh @@ -209,7 +209,7 @@ module_summary_list(){ user_stats(){ if ! container_running "ac-mysql"; then - printf "USERS: %sDatabase offline%s\n" "$RED" "$NC" + echo -e "USERS: ${RED}Database offline${NC}" return fi @@ -219,7 +219,7 @@ user_stats(){ db_characters="$(read_env DB_CHARACTERS_NAME)" if [ -z "$mysql_pw" ] || [ -z "$db_auth" ] || [ -z "$db_characters" ]; then - printf "USERS: %sMissing MySQL configuration in .env%s\n" "$YELLOW" "$NC" + echo -e "USERS: ${YELLOW}Missing MySQL configuration in .env${NC}" return fi