From f7c2dc689ac57a55c869d4feae5e148a9ca601ce Mon Sep 17 00:00:00 2001 From: HorizonCode Date: Wed, 30 Jul 2025 21:35:44 +0200 Subject: [PATCH] fix: update silent argument for nsis --- src-tauri/src/commands.rs | 2 +- src-tauri/tauri.conf.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src-tauri/src/commands.rs b/src-tauri/src/commands.rs index 8f95a22..b131625 100644 --- a/src-tauri/src/commands.rs +++ b/src-tauri/src/commands.rs @@ -789,7 +789,7 @@ pub async fn install_ezpp_launcher_update(app: AppHandle) -> Result<(), String> const CREATE_NEW_PROCESS_GROUP: u32 = 0x00000200; Command::new(&file_path) - .arg("/QN") + .arg("/S") .creation_flags(DETACHED_PROCESS | CREATE_NEW_PROCESS_GROUP) .spawn() .map_err(|e| format!("Failed to spawn updater: {}", e))?; diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 0de3fc2..c3d3170 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -33,7 +33,8 @@ "license": "GPL-3.0", "active": true, "targets": [ - "nsis" + "nsis", + "appimage" ], "windows": { "webviewInstallMode": {