From 33435b7e52c9b2611ef193fab86b6aa025f08d6d Mon Sep 17 00:00:00 2001 From: Geoff Bourne Date: Fri, 21 Mar 2025 16:06:05 -0500 Subject: [PATCH] Generalize EULA instructions in error --- scripts/start-configuration | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/start-configuration b/scripts/start-configuration index e6ff2f40..c16e4f55 100755 --- a/scripts/start-configuration +++ b/scripts/start-configuration @@ -38,8 +38,8 @@ if [ ! -e /data/eula.txt ]; then log "" logError "Please accept the Minecraft EULA at" logError " https://account.mojang.com/documents/minecraft_eula" - logError "by adding the following immediately after 'docker run':" - logError " -e EULA=TRUE" + logError "by setting the container environment variable " + logError "EULA to \"true\"" log "" exit 1 fi @@ -285,4 +285,4 @@ case "${TYPE^^}" in exit 1 ;; -esac \ No newline at end of file +esac