mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 05:17:37 +03:00
Use Command::exec on cfg(unix)
This commit is contained in:
parent
fb2b123239
commit
0be0341cc0
1 changed files with 15 additions and 3 deletions
18
src/main.rs
18
src/main.rs
|
@ -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> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue