diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-03-20 12:41:01 +0100 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-03-20 12:41:01 +0100 |
commit | 85bb5253657c16d9674a9be2f6c8090b413ca7fb (patch) | |
tree | 4b6793ad62db80aa59249b27141fc815be720312 | |
parent | 705021e90c8a854fe4ea5416cb5e49564b1e9d20 (diff) | |
download | FlightCore-85bb5253657c16d9674a9be2f6c8090b413ca7fb.tar.gz FlightCore-85bb5253657c16d9674a9be2f6c8090b413ca7fb.zip |
chore: Fix formatting
-rw-r--r-- | src-tauri/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index 1e548166..12c839fe 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -195,7 +195,7 @@ async fn do_install(nmod: &thermite::model::ModVersion, game_path: &std::path::P let download_path = format!("{}/{}", download_directory.clone(), filename); println!("{}", download_path); - let nfile = match thermite::core::manage::download_file(&nmod.url, download_path){ + let nfile = match thermite::core::manage::download_file(&nmod.url, download_path) { Ok(res) => res, Err(err) => return Err(anyhow!("Failed downloading Northstar {}", err)), }; |