Skip to content

Commit

Permalink
Run cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
EliahKagan committed Nov 30, 2024
1 parent e30c070 commit da03932
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/tools/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,10 @@ fn populate_meta_dir(destination_dir: &Path, script_identity: u32) -> std::io::R
)?;
std::fs::write(
meta_dir.join(META_GIT_VERSION),
std::process::Command::new(GIT_PROGRAM).arg("--version").output()?.stdout,
std::process::Command::new(GIT_PROGRAM)
.arg("--version")
.output()?
.stdout,
)?;
Ok(meta_dir)
}
Expand Down

0 comments on commit da03932

Please sign in to comment.