From 5b4ed8553e018c484a93b02344c566ef2fc4882f Mon Sep 17 00:00:00 2001 From: jonjonjapon <66557313+jonjonjapon@users.noreply.github.com> Date: Fri, 17 Dec 2021 12:05:25 +0900 Subject: [PATCH] Adding verbose logging for serverconfig.txt detection Fixing bootstrap not logging if a config file is found/used. --- vanilla/bootstrap.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vanilla/bootstrap.sh b/vanilla/bootstrap.sh index e610c14..b886680 100644 --- a/vanilla/bootstrap.sh +++ b/vanilla/bootstrap.sh @@ -9,6 +9,8 @@ if [ -z "/config/serverconfig.txt" ]; then echo "Server configuration not found, running with default server configuration." echo "Please ensure your desired serverconfig.txt file is volumed into docker: -v :/config" cp ./serverconfig-default.txt /config/serverconfig.txt +else + echo "Server configuration file found. Running with server configuration file /config/serverconfig.txt" fi if [ -z "$WORLD_FILENAME" ]; then