Fix Engine WebUI staging and logging outputs

This commit is contained in:
2025-10-26 02:02:05 -06:00
parent 01ea3ca4a4
commit 1b6d015124
5 changed files with 107 additions and 66 deletions

View File

@@ -331,7 +331,7 @@ PY
}
ensure_engine_webui_source() {
local engineSource="Data/Engine/web-interface"
local engineSource="Engine/web-interface"
local legacySource="Data/Server/WebUI"
if [[ -d "${engineSource}/src" && -f "${engineSource}/package.json" ]]; then
return 0
@@ -351,7 +351,7 @@ ensure_engine_webui_source() {
}
prepare_webui() {
local customUIPath="Data/Engine/web-interface"
local customUIPath="Engine/web-interface"
local webUIDestination="Server/web-interface"
ensure_engine_webui_source || return 1
mkdir -p "$webUIDestination"