test(docker): recreate update fixture ui asset after install

This commit is contained in:
Peter Steinberger
2026-04-27 03:06:06 +01:00
parent 2dba9e6a76
commit f4cf7e3b4f

View File

@@ -62,6 +62,11 @@ NODE
cd "$git_root"
npm install --omit=optional --no-fund --no-audit >/tmp/openclaw-git-install.log 2>&1
)
node - <<'"'"'NODE'"'"'
const fs = require("node:fs");
fs.mkdirSync("/tmp/openclaw-git/dist/control-ui", { recursive: true });
fs.writeFileSync("/tmp/openclaw-git/dist/control-ui/index.html", "<!doctype html><title>fixture</title>\n");
NODE
git config --global user.email "docker-e2e@openclaw.local"
git config --global user.name "OpenClaw Docker E2E"