Skip to content

Commit

Permalink
unreal_cpp_bootstrapper: fix clippy warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bananaturtlesandwich committed Apr 10, 2024
1 parent c719678 commit bd59669
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions unreal_cpp_bootstrapper/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,15 @@ fn download(mod_loader_dir: &PathBuf) -> Result<(PathBuf, PathBuf), Box<dyn Erro
.write(true)
.read(true)
.create(true)
.truncate(true)
.open(&loader_file_path)?;
loader_asset.download(&mut loader_file)?;

let mut proxy_file = OpenOptions::new()
.write(true)
.read(true)
.create(true)
.truncate(true)
.open(&proxy_file_path)?;
proxy_asset.download(&mut proxy_file)?;

Expand Down

0 comments on commit bd59669

Please sign in to comment.