From 153b05efc8d045b580d6b5320624265adcbd2810 Mon Sep 17 00:00:00 2001 From: Esdras Renan Date: Tue, 25 Nov 2025 13:47:47 -0300 Subject: [PATCH] chore(tauri): evita shell=true no stub para suprimir DEP0190 --- 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 5999888..497f67e 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: process.platform === "win32", + shell: false, }) child.on("exit", (code, signal) => {