Fixed attempted rsync when WORLD not set

This commit is contained in:
Geoff Bourne 2020-07-11 13:09:48 -05:00
parent 092b530537
commit a07ae685e2
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ else
worldDest=/data/$LEVEL
fi
if [[ "$WORLD" ]] && isTrue "${FORCE_WORLD_COPY}" || [ ! -d "$worldDest" ]; then
if [[ "$WORLD" ]] && ( isTrue "${FORCE_WORLD_COPY}" || [ ! -d "$worldDest" ] ); then
if isURL $WORLD; then
curl -fsSL "$WORLD" -o /tmp/world.zip
zipSrc=/tmp/world.zip