build: temporarily disable stderr capture on distcheck

pull/7878/head
Mitchell Hashimoto 2025-07-09 10:22:44 -07:00
parent ffc6fe8686
commit d8e7a6634e
No known key found for this signature in database
GPG Key ID: 523D5DC389D273BC
1 changed files with 2 additions and 1 deletions

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.
// 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;
};