Fix Tauri builds (#119)

* fix: attempt to use local user keychain

* chore: tmp disable non-macos builds

* fix: windows process fix patch

* fix: re-enable windows

* fix: remove sudo

* fix: tmp disable windows again

* fix: windows build again

* chore: re-disable windows

* fix: pin to macos 14

* fix: re-enable other builds
This commit is contained in:
DecDuck
2025-08-15 23:53:16 +10:00
parent ec6294b8e7
commit 5eef2bf60f
2 changed files with 5 additions and 6 deletions

View File

@ -347,11 +347,10 @@ impl ProcessManager<'_> {
#[cfg(target_os = "windows")]
use std::os::windows::process::CommandExt;
#[cfg(target_os = "windows")]
let mut command = Command::new("start");
let mut command = Command::new("cmd");
#[cfg(target_os = "windows")]
command.raw_arg(format!("/min cmd /C \"{}\"", &launch_string));
command.raw_arg(format!("/C \"{}\"", &launch_string));
info!("launching (in {install_dir}): {launch_string}",);