From 39e12a7af1ee26f259eed79c03a69c3b5643b971 Mon Sep 17 00:00:00 2001 From: Simon L Date: Thu, 28 Sep 2023 14:01:28 +0200 Subject: [PATCH] print red if community container was not found Signed-off-by: Simon L --- Containers/mastercontainer/start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containers/mastercontainer/start.sh b/Containers/mastercontainer/start.sh index 1c26b099..6193cedb 100644 --- a/Containers/mastercontainer/start.sh +++ b/Containers/mastercontainer/start.sh @@ -245,7 +245,7 @@ if [ -n "$AIO_COMMUNITY_CONTAINERS" ]; then read -ra AIO_CCONTAINERS <<< "$AIO_COMMUNITY_CONTAINERS" for container in "${AIO_CCONTAINERS[@]}"; do if ! [ -d "/var/www/docker-aio/community-containers/$container" ]; then - echo "The community container $container was not found!" + print_red "The community container $container was not found!" FAIL_CCONTAINERS=1 fi done