fix: 将host-spawn替换为systemd-run --user以提升兼容性

This commit is contained in:
2026-04-12 21:01:33 +08:00
parent 71db2f2b71
commit c46bb03e3f
3 changed files with 3 additions and 3 deletions

View File

@@ -220,7 +220,7 @@ ipcMain.handle("open-install-settings", async () => {
const { spawn } = await import("node:child_process");
const scriptPath =
"/opt/durapps/spark-store/bin/update-upgrade/ss-update-controler.sh";
const child = spawn("/opt/spark-store/extras/host-spawn", [scriptPath], {
const child = spawn("systemd-run", ["--user", scriptPath], {
detached: true,
stdio: "ignore",
});