blueprint-compiler use stdout for some god forsaken reason

This commit is contained in:
Erica Z 2024-11-05 09:37:29 +01:00
parent 6ed96cddb4
commit ab040e6af0

View file

@ -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");