fix: 修复应用启动命令,移除交互式模式

This commit is contained in:
Elysia
2026-01-31 20:53:48 +08:00
parent eb386ec23e
commit 2f7af3ca8f

View File

@@ -54,7 +54,7 @@ function launch_app() {
[ -z "$exec_cmd" ] && return 1
log.info "Launching: $exec_cmd"
${SHELL:-bash} -i -c "$exec_cmd" &
${SHELL:-bash} -c "$exec_cmd" &
}
# 导出函数供 ACE 环境调用