build: temporarily disable stderr capture on distcheck

This commit is contained in:
Mitchell Hashimoto
2025-07-09 10:22:44 -07:00
parent ffc6fe8686
commit d8e7a6634e

View File

@ -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. // 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 // 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. // 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; break :step step;
}; };