From 23c2c638b74fe3f7669d3aa4cf610ad461488ae1 Mon Sep 17 00:00:00 2001 From: Long Date: Mon, 19 Jan 2026 11:37:45 +0700 Subject: [PATCH] fix(ui): enable shell mode for spawn on Windows --- scripts/ui.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/ui.js b/scripts/ui.js index 32bbb2009..4aff8e20b 100644 --- a/scripts/ui.js +++ b/scripts/ui.js @@ -55,6 +55,7 @@ function run(cmd, args) { cwd: uiDir, stdio: "inherit", env: process.env, + shell: process.platform === "win32", }); child.on("exit", (code, signal) => { if (signal) process.exit(1);