From 6ea3aa426b54034dc9b290f96fb13458591178c2 Mon Sep 17 00:00:00 2001 From: Skye Date: Tue, 13 Feb 2024 15:13:11 +0900 Subject: [PATCH] chore: remove blank jar(FabricMC/fabric-installer#125) --- src-tauri/src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 63ee06a..80a5e27 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -119,9 +119,6 @@ async fn install_fabriclike( if profile_jar_path.is_file() { tokio::fs::remove_file(&profile_jar_path).await?; } - // yes, actually - // we create an empty file - tokio::fs::write(&profile_jar_path, []).await?; Ok(()) }