use printf

This commit is contained in:
zino
2023-11-20 17:43:31 +01:00
parent 71c22e42fd
commit b01a375bcb

View File

@@ -5,13 +5,7 @@ set -e
# Function to display [INFO] in blue and the message in default color
info() {
if echo -e "" > /dev/null 2>&1; then
# If echo -e works in this shell
echo -e "\033[0;34m[INFO]\033[0m $1"
else
# If echo -e does not work in this shell
echo "\033[0;34m[INFO]\033[0m $1"
fi
printf "\033[0;34m[INFO]\033[0m %s\n" "$1"
}
info "Stopping Docker container..."