From c09324c9ac95f3247f2b3a6adad133dfe36a532e Mon Sep 17 00:00:00 2001 From: yumoqing Date: Tue, 11 Aug 2026 17:04:38 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20production-ready=20pccs=20deployment=20?= =?UTF-8?q?=E2=80=94=20homepage=20working,=20RBAC=20active,=20all=20module?= =?UTF-8?q?s=20online?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- build.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sh b/build.sh index 097e8ec..ebb49df 100644 --- a/build.sh +++ b/build.sh @@ -163,6 +163,8 @@ for m in appbase rbac pcpool pcc storage_mgr image_mgr; do ln -sfn "${PKGDIR}/${m}/wwwroot" "${CDIR}/wwwroot/${m}" 2>/dev/null || true done ln -sfn "${PKGDIR}/pccs/wwwroot" "${CDIR}/wwwroot/pccs" 2>/dev/null || true +# 确保根级 index.html 可访问 +cp -f "${PKGDIR}/pccs/wwwroot/index.html" "${CDIR}/wwwroot/index.html" 2>/dev/null || true # bricks if [ -f "${PKGDIR}/bricks/build.sh" ]; then (cd "${PKGDIR}/bricks" && npm install --silent 2>/dev/null && bash build.sh 2>&1 | tail -2) || true