fix: resolve tauri spawn path e alinhar cor do texto ao SLA

This commit is contained in:
Esdras Renan 2025-11-25 13:52:16 -03:00
parent 153b05efc8
commit bb6c3c16a1
2 changed files with 7 additions and 7 deletions

View file

@ -23,7 +23,7 @@ if (!process.env.TAURI_BUNDLE_TARGETS) {
}
}
const executable = process.platform === "win32" ? "tauri.cmd" : "tauri"
const executable = process.platform === "win32" ? resolve(stubDir, "tauri.cmd") : "tauri"
const child = spawn(executable, process.argv.slice(2), {
stdio: "inherit",
shell: false,