Skip to content

Commit bb970dc

Browse files
committed
Auto merge of #3970 - golddranks:master, r=alexcrichton
exec (replace the current process) external subcommands instead of running them as child processes. This fixes #3959 (tested to be working with my yet-to-be-published subcommand, and tested not to break things with `cargo tree` and `cargo outdated`).
2 parents 04574f0 + ca0fc8d commit bb970dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/cargo.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ fn execute_external_subcommand(config: &Config, cmd: &str, args: &[String]) -> C
325325
let err = match util::process(&command)
326326
.env(cargo::CARGO_ENV, cargo_exe)
327327
.args(&args[1..])
328-
.exec() {
328+
.exec_replace() {
329329
Ok(()) => return Ok(()),
330330
Err(e) => e,
331331
};

0 commit comments

Comments
 (0)