From d00f9d3609f3b40cf0cd1596e7a8dd4f185a3e2d Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Tue, 1 Oct 2019 13:54:14 -0500 Subject: [PATCH] Normalize EULA value to lowercase to match Forge expectations For #394 --- start-configuration | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/start-configuration b/start-configuration index 58ef75fd..8f0555f7 100644 --- a/start-configuration +++ b/start-configuration @@ -6,8 +6,8 @@ shopt -s nullglob export HOME=/data if [ ! -e /data/eula.txt ]; then - EULA="${EULA^^}" - if [ "$EULA" != "TRUE" ]; then + EULA="${EULA,,}" + if [ "$EULA" != "true" ]; then echo "" echo "Please accept the Minecraft EULA at" echo " https://account.mojang.com/documents/minecraft_eula"