From 71c22e42fd6e2803c35f06fc9606e24619b0c70d Mon Sep 17 00:00:00 2001 From: zino Date: Mon, 20 Nov 2023 17:41:33 +0100 Subject: [PATCH] remove -e --- deploy_funmaps.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/deploy_funmaps.sh b/deploy_funmaps.sh index f203962..a7419a4 100644 --- a/deploy_funmaps.sh +++ b/deploy_funmaps.sh @@ -5,7 +5,13 @@ set -e # Function to display [INFO] in blue and the message in default color info() { - echo -e "\033[0;34m[INFO]\033[0m $1" + 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 } info "Stopping Docker container..."