From d6ec41c269026f7f64951c55aba957f407daa693 Mon Sep 17 00:00:00 2001 From: Djeeberjr Date: Thu, 15 Sep 2022 13:34:56 +0200 Subject: [PATCH] fixed exclude --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index ca8411f..bb66701 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -57,7 +57,7 @@ for mod_id in $(curl -s "https://steamcommunity.com/sharedfiles/filedetails/?id= do # Check if mod is excluded - if [[ "$MOD_EXCLUDE" == *"$mod_id"* ]]; then + if [[ "$MOD_EXCLUDE" != *"$mod_id"* ]]; then # Check if directory exists if [ ! -d "$VOLUME_HOME/mods/$mod_id" ]; then echo "Could not find mod directory for $mod_id"