mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-09 20:12:14 +10:00
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:
@ -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}",);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user