mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-04 21:37:47 +03:00
Merge pull request #217 from dtolnay/exec
Use Command::exec on cfg(unix)
This commit is contained in:
commit
c2502d01d5
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");
|
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> {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue