Correctly check UPDATE_MODS_ON_START env

Closes #323
This commit is contained in:
Sandro Jäckel 2020-05-25 03:21:17 +02:00
parent cb36026261
commit 0c924152a7
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 2 additions and 2 deletions

View File

@ -37,7 +37,7 @@ if [[ $NRTMPSAVES -gt 0 ]]; then
rm -f "$SAVES"/*.tmp.zip rm -f "$SAVES"/*.tmp.zip
fi fi
if [[ ${UPDATE_MODS_ON_START:-} ]]; then if [[ ${UPDATE_MODS_ON_START:-} == "true" ]]; then
./docker-update-mods.sh ./docker-update-mods.sh
fi fi

View File

@ -37,7 +37,7 @@ if [[ $NRTMPSAVES -gt 0 ]]; then
rm -f "$SAVES"/*.tmp.zip rm -f "$SAVES"/*.tmp.zip
fi fi
if [[ ${UPDATE_MODS_ON_START:-} ]]; then if [[ ${UPDATE_MODS_ON_START:-} == "true" ]]; then
./docker-update-mods.sh ./docker-update-mods.sh
fi fi