From 7a50230c12efa6e987fef721162686d6655be293 Mon Sep 17 00:00:00 2001 From: tiamilani Date: Mon, 5 Feb 2024 10:28:54 +0100 Subject: [PATCH] Fix the swap between blue and green colorcodes --- lib/stdlib.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/stdlib.sh b/lib/stdlib.sh index a750da2..2204d60 100644 --- a/lib/stdlib.sh +++ b/lib/stdlib.sh @@ -93,9 +93,9 @@ __log_init__() { # colors for logging in interactive mode [[ $COLOR_BOLD ]] || COLOR_BOLD="\033[1m" [[ $COLOR_RED ]] || COLOR_RED="\033[0;31m" - [[ $COLOR_GREEN ]] || COLOR_GREEN="\033[0;34m" + [[ $COLOR_GREEN ]] || COLOR_GREEN="\033[0;32m" [[ $COLOR_YELLOW ]] || COLOR_YELLOW="\033[0;33m" - [[ $COLOR_BLUE ]] || COLOR_BLUE="\033[0;32m" + [[ $COLOR_BLUE ]] || COLOR_BLUE="\033[0;34m" [[ $COLOR_OFF ]] || COLOR_OFF="\033[0m" else # no colors to be used if non-interactive