From 61caeba2420ee97caaaf8a03dfc6b53ad29e7b84 Mon Sep 17 00:00:00 2001 From: Julian Freeman Date: Tue, 31 Mar 2026 17:16:18 -0400 Subject: [PATCH] not log long scripta --- src-tauri/src/winget.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-tauri/src/winget.rs b/src-tauri/src/winget.rs index 74a2c04..89123b2 100644 --- a/src-tauri/src/winget.rs +++ b/src-tauri/src/winget.rs @@ -228,7 +228,7 @@ pub fn list_updates(handle: &AppHandle) -> Vec { } fn execute_powershell(handle: &AppHandle, log_id: &str, cmd_title: &str, script: &str) -> Vec { - emit_log(handle, log_id, cmd_title, &format!("Executing Script:\n{}\n---", script), "info"); + emit_log(handle, log_id, cmd_title, "Fetching data from Winget...", "info"); let output = Command::new("powershell") .args(["-NoProfile", "-Command", script])