fixed exclude
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Djeeberjr 2022-09-15 13:34:56 +02:00
parent 03a471cd0f
commit d6ec41c269

View File

@ -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"