From 21eddf7e986393b66e8f6d8ddc94fe3c0c036078 Mon Sep 17 00:00:00 2001
From: Martin Weise <martin.weise@tuwien.ac.at>
Date: Fri, 21 Mar 2025 09:37:05 +0100
Subject: [PATCH] WIP

Signed-off-by: Martin Weise <martin.weise@tuwien.ac.at>
---
 .scripts/check-service.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/.scripts/check-service.sh b/.scripts/check-service.sh
index ad430b48f7..f5d144abaa 100755
--- a/.scripts/check-service.sh
+++ b/.scripts/check-service.sh
@@ -11,12 +11,12 @@ compare "services.$1.depends_on"
 compare "services.$1.healthcheck"
 compare "services.$1.logging"
 
-if [ ! -z "$IGNORE_IMAGE" ]; then
+if [ -z "$IGNORE_IMAGE" ]; then
   compare "services.$1.image"
 fi
-if [ ! -z "$IGNORE_VOLUMES" ]; then
+if [ -z "$IGNORE_VOLUMES" ]; then
   compare "services.$1.volumes"
 fi
-if [ ! -z "$IGNORE_PORTS" ]; then
+if [ -z "$IGNORE_PORTS" ]; then
   compare "services.$1.ports"
 fi
-- 
GitLab