From c90cf0ed55059141ffb2363d1d678613385aad51 Mon Sep 17 00:00:00 2001 From: Lncvrt Date: Sat, 1 Nov 2025 11:04:39 -0700 Subject: [PATCH] Fix windows --- src-tauri/src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index 3875954..e3776f4 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -60,6 +60,7 @@ async fn unzip_to_dir(zip_path: PathBuf, out_dir: PathBuf) -> String { } } +#[allow(unused_variables)] #[tauri::command] async fn download(app: AppHandle, url: String, name: String, executable: String) -> String { let client = reqwest::Client::new();