From 5326c8b473f686804c5cefcb92dc512b774d6978 Mon Sep 17 00:00:00 2001 From: crovaxon <1+crovaxon@noreply.localhost> Date: Sat, 23 May 2026 15:24:05 +0200 Subject: [PATCH] entrypoint.sh aktualisiert testing for existence of newer foundry main.js in different location in v13 and higher --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 06de0a8..f241758 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -10,7 +10,7 @@ chown -R ${PUID}:${PGID} /foundry FOUNDRY_MAIN_PATH=/foundry/resources/app/main.js # check for newer path used in v13 and newer -if [ ! -f /foundry/main.js ]; then +if [ -e /foundry/main.js]; then FOUNDRY_MAIN_PATH=/foundry/main.js fi