From 2e8325276ca7eadff6f070c9ea64e7d1a4b71279 Mon Sep 17 00:00:00 2001 From: Davis Vaughan Date: Wed, 25 Sep 2024 16:23:11 -0400 Subject: [PATCH] panic after to get stderr output --- crates/ark/build.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/ark/build.rs b/crates/ark/build.rs index 762c97c86..ac7ec4fc2 100644 --- a/crates/ark/build.rs +++ b/crates/ark/build.rs @@ -35,12 +35,12 @@ fn main() { let build_date = chrono::Utc::now().to_rfc3339_opts(chrono::SecondsFormat::Secs, true); println!("cargo:rustc-env=BUILD_DATE={}", build_date); - panic!("oh no"); - // Embed an Application Manifest file on Windows. // Documented to do nothing on non-Windows. let resource = Path::new("resources") .join("manifest") .join("ark-manifest.rc"); embed_resource::compile(resource, embed_resource::NONE); + + panic!("oh no"); }