Skip to content

Commit cbc7b45

Browse files
committed
Use command directly from bootstrap command inside start, and not via as_command_mut
1 parent dd963ef commit cbc7b45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/src/utils/exec.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,7 @@ impl ExecutionContext {
559559
println!("running: {command:?} (created at {created_at}, executed at {executed_at})")
560560
});
561561

562-
let cmd = command.as_command_mut();
562+
let cmd = &mut command.command;
563563
cmd.stdout(stdout.stdio());
564564
cmd.stderr(stderr.stdio());
565565

0 commit comments

Comments
 (0)