diff --git a/build.rs b/build.rs index 24a5a6b..ec8cd7d 100644 --- a/build.rs +++ b/build.rs @@ -26,9 +26,9 @@ fn main() { let output = command.output().unwrap(); assert!( output.status.success(), - "blueprint-compiler failed with exit status {} and stderr:\n{}", + "blueprint-compiler failed with exit status {} and stdout:\n{}", output.status, - String::from_utf8_lossy(&output.stderr) + String::from_utf8_lossy(&output.stdout) ); println!("cargo::rerun-if-changed=resources");