From 8ee13665053a8e4facc44f327b4f18b3350af26e Mon Sep 17 00:00:00 2001 From: mag37 Date: Fri, 26 Jan 2024 21:53:15 +0100 Subject: [PATCH] typo --- dockcheck.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/dockcheck.sh b/dockcheck.sh index bd5806b..ac69f68 100755 --- a/dockcheck.sh +++ b/dockcheck.sh @@ -307,7 +307,6 @@ if [ -n "$GotUpdates" ] ; then IFS=',' read -r -a Confs <<< "$ComposeFile" ; unset IFS for conf in "${Confs[@]}"; do CompleteConfs+="-f $conf " ; done ### Check if the container got an environment file set, use it if so: - set -x if [ -n "$ContEnv" ]; then ### prepare env-files arguments ContEnvs=$(for env in ${ContEnv//,/ } ; do printf -- "--env-file %s " $env; done)