Use Command::exec on cfg(unix)

This commit is contained in:
David Tolnay 2024-03-29 13:54:34 -07:00
parent fb2b123239
commit 0be0341cc0
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82

View file

@ -100,9 +100,21 @@ fn do_rustc_wrapper(wrapper: &OsStr) -> Result<i32> {
cmd.env("RUSTC_BOOTSTRAP", "1");
}
let exit_status = cmd.status()?;
let code = exit_status.code().unwrap_or(1);
Ok(code)
#[cfg(unix)]
{
use crate::error::Error;
use std::os::unix::process::CommandExt as _;
let err = cmd.exec();
return Err(Error::Io(err));
}
#[cfg(not(unix))]
{
let exit_status = cmd.status()?;
let code = exit_status.code().unwrap_or(1);
return Ok(code);
}
}
fn do_cargo_expand() -> Result<i32> {