Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
rfvgyhn committed May 2, 2024
1 parent 41aa72a commit 054c5bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrapper-rs/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ fn write_error(msg: &str) -> Result<(), Box<dyn std::error::Error>> {
.iter()
.collect();

let write = fs::create_dir_all(&file_path.parent().unwrap()).and_then(|()| {
let write = fs::create_dir_all(file_path.parent().unwrap()).and_then(|()| {
let mut file = OpenOptions::new()
.append(true)
.create(true)
Expand Down

0 comments on commit 054c5bd

Please sign in to comment.