From 0c5f6e24fff2b316dc0f34d8c7445f00c0cf83b7 Mon Sep 17 00:00:00 2001 From: th33xitus Date: Sat, 2 Apr 2022 23:39:18 +0200 Subject: [PATCH] refactor: replace ${default} with ${white} Signed-off-by: Dominik Willner th33xitus@gmail.com --- scripts/octoprint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/octoprint.sh b/scripts/octoprint.sh index 1b262ac..157d112 100644 --- a/scripts/octoprint.sh +++ b/scripts/octoprint.sh @@ -366,9 +366,9 @@ octoprint_status(){ if [ "$ocount" == "${#octoprint_data[*]}" ]; then OCTOPRINT_STATUS="$(printf "${green}Installed: %-5s${default}" $SERVICE_FILE_COUNT)" elif [ "$ocount" == 0 ]; then - OCTOPRINT_STATUS="${red}Not installed!${default} " + OCTOPRINT_STATUS="${red}Not installed!${white} " else - OCTOPRINT_STATUS="${yellow}Incomplete!${default} " + OCTOPRINT_STATUS="${yellow}Incomplete!${white} " fi }