Skip to content

Commit

Permalink
Address new clippy lints
Browse files Browse the repository at this point in the history
  • Loading branch information
UebelAndre committed Feb 8, 2024
1 parent b8b2e19 commit 39f2e4d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions util/process_wrapper/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ fn main() -> Result<(), ProcessWrapperError> {
if let Some(tf) = opts.touch_file {
OpenOptions::new()
.create(true)
.truncate(true)
.write(true)
.open(tf)
.map_err(|e| ProcessWrapperError(format!("failed to create touch file: {}", e)))?;
Expand Down

0 comments on commit 39f2e4d

Please sign in to comment.