mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
Merge #4378
4378: Add stderr to error message r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
commit
d81e19286f
@ -600,7 +600,12 @@ pub fn get_rustc_cfg_options(target: Option<&String>) -> CfgOptions {
|
|||||||
fn output(mut cmd: Command) -> Result<Output> {
|
fn output(mut cmd: Command) -> Result<Output> {
|
||||||
let output = cmd.output().with_context(|| format!("{:?} failed", cmd))?;
|
let output = cmd.output().with_context(|| format!("{:?} failed", cmd))?;
|
||||||
if !output.status.success() {
|
if !output.status.success() {
|
||||||
bail!("{:?} failed, {}", cmd, output.status)
|
match String::from_utf8(output.stderr) {
|
||||||
|
Ok(stderr) if !stderr.is_empty() => {
|
||||||
|
bail!("{:?} failed, {}\nstderr:\n{}", cmd, output.status, stderr)
|
||||||
|
}
|
||||||
|
_ => bail!("{:?} failed, {}", cmd, output.status),
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Ok(output)
|
Ok(output)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user