From 7be2020879438c77898cb2c6f4a406cf7313c907 Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Wed, 17 Oct 2018 23:17:32 -0500 Subject: [PATCH] mc: fix WORLD downloading fixes #259 --- minecraft-server/start-finalSetup01World | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minecraft-server/start-finalSetup01World b/minecraft-server/start-finalSetup01World index aa37b843..c1caa1f8 100755 --- a/minecraft-server/start-finalSetup01World +++ b/minecraft-server/start-finalSetup01World @@ -3,7 +3,7 @@ worldDest=/data/$LEVEL # If no world exists and a URL for a world is supplied, download it and unpack -if [[ "$WORLD" ]] && [! -d "$worldDest"]; then +if [[ "$WORLD" ]] && [ ! -d "$worldDest" ]; then case "X$WORLD" in X[Hh][Tt][Tt][Pp]*) echo "Downloading world from $WORLD"