Merge pull request #217 from dtolnay/exec

Use Command::exec on cfg(unix)
This commit is contained in:
David Tolnay 2024-03-29 14:14:34 -07:00 committed by GitHub
commit c2502d01d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -100,9 +100,21 @@ fn do_rustc_wrapper(wrapper: &OsStr) -> Result<i32> {
cmd.env("RUSTC_BOOTSTRAP", "1"); cmd.env("RUSTC_BOOTSTRAP", "1");
} }
let exit_status = cmd.status()?; #[cfg(unix)]
let code = exit_status.code().unwrap_or(1); {
Ok(code) 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> { fn do_cargo_expand() -> Result<i32> {