From 28cd85908df6f5c12c0773a86f64bcf35eb363ff 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);