Skip to content

Commit d6eebd3

Browse files
authored
Cargo fmt
1 parent e7ad62d commit d6eebd3

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/command_helpers.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,11 @@ pub(crate) fn spawn_and_wait_for_output(cmd: &mut Command, cargo_output: &CargoO
361361
}
362362

363363
pub(crate) fn run_output(cmd: &mut Command, cargo_output: &CargoOutput) -> Result<Vec<u8>, Error> {
364-
let Output { status, stdout, stderr } = spawn_and_wait_for_output(cmd, cargo_output)?;
364+
let Output {
365+
status,
366+
stdout,
367+
stderr,
368+
} = spawn_and_wait_for_output(cmd, cargo_output)?;
365369

366370
stderr.split(|&b| b == b'\n').for_each(write_warning);
367371

0 commit comments

Comments
 (0)