fix(deploy): 验收脚本已安装时输出正确通过文案

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
Nexus Deploy
2026-06-06 21:54:03 +08:00
parent 314bece418
commit 954bdbd972
+5 -1
View File
@@ -317,7 +317,11 @@ main() {
exit 1
fi
echo ""
pass "验收通过 — 可打开安装向导完成步骤 1–5"
if [[ "${INSTALL_WIZARD_ARCHIVED:-false}" == true ]]; then
pass "验收通过 — 安装已完成,请访问 /app/ 登录"
else
pass "验收通过 — 可打开安装向导完成步骤 1–5"
fi
}
main "$@"