From 413f30a7d7169d132671ba495de5ddd47c39bf95 Mon Sep 17 00:00:00 2001 From: mag37 Date: Tue, 19 Nov 2024 21:26:05 +0100 Subject: [PATCH] Removed unwanted skip. --- extras/errorCheck.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/extras/errorCheck.sh b/extras/errorCheck.sh index c968a8a..d4e10bf 100755 --- a/extras/errorCheck.sh +++ b/extras/errorCheck.sh @@ -6,10 +6,6 @@ for i in $(podman ps --filter "name=$SearchName" --format '{{.Names}}') ; do ContImage=$(podman inspect "$i" --format='{{.ImageName}}') ContPath=$(jq -r '."com.docker.compose.project.working_dir"' <<< "$ContLabels") [ "$ContPath" == "null" ] && ContPath="" - if [ -z "$ContPath" ]; then - echo "$i has no compose labels - skipping" - continue - fi ContConfigFile=$(jq -r '."com.docker.compose.project.config_files"' <<< "$ContLabels") [ "$ContConfigFile" == "null" ] && ContConfigFile="" ContName=$(jq -r '."com.docker.compose.service"' <<< "$ContLabels")