From 038a30b628c383bfc711c41bd460947d8e32274a Mon Sep 17 00:00:00 2001 From: Thomas McWork Date: Wed, 24 Jan 2024 21:28:53 +0100 Subject: [PATCH] add colors to version update notice --- dockcheck.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockcheck.sh b/dockcheck.sh index 2bbe790..fdd3a2f 100755 --- a/dockcheck.sh +++ b/dockcheck.sh @@ -145,7 +145,7 @@ progress_bar() { } ### Version check & initiate self update -[[ "$VERSION" != "$LatestRelease" ]] && { printf "New version available! %s ⇒ %s \n Change Notes: %s \n" "$VERSION" "$LatestRelease" "$LatestChanges" ; [[ -z "$AutoUp" ]] && self_update_select ; } +[[ "$VERSION" != "$LatestRelease" ]] && { printf "New version available! %b%s%b ⇒ %b%s%b \n Change Notes: %s \n" "$c_yellow" "$VERSION" "$c_reset" "$c_green" "$LatestRelease" "$c_reset" "$LatestChanges" ; [[ -z "$AutoUp" ]] && self_update_select ; } ### Set $1 to a variable for name filtering later. SearchName="$1"