We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f669c14 commit 0304d4bCopy full SHA for 0304d4b
use-common.sh
@@ -6,14 +6,16 @@ source ./use-states.sh
6
7
display_emphasized_message() {
8
local message=$1
9
- printf "\033[1;34m%s\033[0m\n" "$message" # Display message in bold blue
+ printf "\033[1;32m%s\033[0m\n" "$message" # Display message in bold green
10
}
11
12
+
13
display_checkpoint_message() {
14
- printf "\033[1;34m[CHECKPOINT] %s\033[0m\n" "$message" # Display message in bold blue
15
+ printf "\033[38;5;214m[CHECKPOINT] %s\033[0m\n" "$message" # Display message in orange (256-color)
16
17
18
19
# Function to display a transition message between states in a Blue-Green deployment
20
display_planned_transition() {
21
local current_state=$1
0 commit comments