From d8e7a6634ea25a54ebe7e5c2bfe312f5a50b0513 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 9 Jul 2025 10:22:44 -0700 Subject: [PATCH] build: temporarily disable stderr capture on distcheck --- src/build/GhosttyDist.zig | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/build/GhosttyDist.zig b/src/build/GhosttyDist.zig index 3d7ba3b8d..25ec7182b 100644 --- a/src/build/GhosttyDist.zig +++ b/src/build/GhosttyDist.zig @@ -115,7 +115,8 @@ pub fn init(b: *std.Build, cfg: *const Config) !GhosttyDist { // Capture stderr so it doesn't spew into the parent build. // On the flip side, if the test fails we won't know why so // that sucks but we should have already ran tests at this point. - _ = step.captureStdErr(); + // NOTE(mitchellh): temporarily disabled to diagnose heisenbug + //_ = step.captureStdErr(); break :step step; };