chore(tauri): evita shell=true no stub para suprimir DEP0190

This commit is contained in:
Esdras Renan 2025-11-25 13:47:47 -03:00
parent d76e9ed0cb
commit 153b05efc8

View file

@ -26,7 +26,7 @@ if (!process.env.TAURI_BUNDLE_TARGETS) {
const executable = process.platform === "win32" ? "tauri.cmd" : "tauri"
const child = spawn(executable, process.argv.slice(2), {
stdio: "inherit",
shell: process.platform === "win32",
shell: false,
})
child.on("exit", (code, signal) => {