From a1937c751578e2a2a4281c67d6ab700faff72a43 Mon Sep 17 00:00:00 2001 From: Esdras Renan Date: Fri, 10 Oct 2025 22:29:49 -0300 Subject: [PATCH] fix: permitir tauri build em windows --- apps/desktop/scripts/tauri-with-stub.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/scripts/tauri-with-stub.mjs b/apps/desktop/scripts/tauri-with-stub.mjs index 497f67e..5999888 100644 --- a/apps/desktop/scripts/tauri-with-stub.mjs +++ b/apps/desktop/scripts/tauri-with-stub.mjs @@ -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: false, + shell: process.platform === "win32", }) child.on("exit", (code, signal) => {