| author | |
| committer | |
| log | 417b92f0852eca8bd47f1964a63a9d1f6f3e6f6b |
| tree | 7613ce922fff78283ea9b34f2b275ecd94805593 |
| parent | e8e9a4ac664ca803514ca5f177f3384ce66e31fc |
This mirrors the behavior of the progress indicator for the actual
compilation. Not doing this was causing sporadic CI failures due to the
(non-existent) fetches taking long enough to appear in stderr.1 files changed, 1 insertions(+), 1 deletions(-)
src/main.zig+1-1| ... | ... | @@ -4438,7 +4438,7 @@ pub fn cmdBuild(gpa: Allocator, arena: Allocator, args: []const []const u8) !voi |
| 4438 | 4438 | try wip_errors.init(gpa); |
| 4439 | 4439 | defer wip_errors.deinit(); |
| 4440 | 4440 | |
| 4441 | var progress: std.Progress = .{}; | |
| 4441 | var progress: std.Progress = .{ .dont_print_on_dumb = true }; | |
| 4442 | 4442 | const root_prog_node = progress.start("Fetch Packages", 0); |
| 4443 | 4443 | defer root_prog_node.end(); |
| 4444 | 4444 |