Skip to content

Commit da03932

Browse files
committed
Run cargo fmt
1 parent e30c070 commit da03932

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/tools/src/lib.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,10 @@ fn populate_meta_dir(destination_dir: &Path, script_identity: u32) -> std::io::R
743743
)?;
744744
std::fs::write(
745745
meta_dir.join(META_GIT_VERSION),
746-
std::process::Command::new(GIT_PROGRAM).arg("--version").output()?.stdout,
746+
std::process::Command::new(GIT_PROGRAM)
747+
.arg("--version")
748+
.output()?
749+
.stdout,
747750
)?;
748751
Ok(meta_dir)
749752
}

0 commit comments

Comments
 (0)