From ab040e6af044a1452a3397b8d883ce97bf0ee7c0 Mon Sep 17 00:00:00 2001 From: Erica Z Date: Tue, 5 Nov 2024 09:37:29 +0100 Subject: [PATCH] blueprint-compiler use stdout for some god forsaken reason --- build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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");