blueprint-compiler use stdout for some god forsaken reason
This commit is contained in:
parent
6ed96cddb4
commit
ab040e6af0
1 changed files with 2 additions and 2 deletions
4
build.rs
4
build.rs
|
@ -26,9 +26,9 @@ fn main() {
|
||||||
let output = command.output().unwrap();
|
let output = command.output().unwrap();
|
||||||
assert!(
|
assert!(
|
||||||
output.status.success(),
|
output.status.success(),
|
||||||
"blueprint-compiler failed with exit status {} and stderr:\n{}",
|
"blueprint-compiler failed with exit status {} and stdout:\n{}",
|
||||||
output.status,
|
output.status,
|
||||||
String::from_utf8_lossy(&output.stderr)
|
String::from_utf8_lossy(&output.stdout)
|
||||||
);
|
);
|
||||||
|
|
||||||
println!("cargo::rerun-if-changed=resources");
|
println!("cargo::rerun-if-changed=resources");
|
||||||
|
|
Loading…
Reference in a new issue