Commit c9587d3e40

Andrew Kelley <andrew@ziglang.org>
2024-05-27 19:48:50
CLI: add missing call to root progress node end()
cleans up unwanted "LLVM Emit Object" being left on the screen
1 parent 64c6a50
Changed files (1)
src/main.zig
@@ -3411,6 +3411,7 @@ fn buildOutputType(
     const root_prog_node = std.Progress.start(.{
         .disable_printing = (color == .off),
     });
+    defer root_prog_node.end();
 
     updateModule(comp, color, root_prog_node) catch |err| switch (err) {
         error.SemanticAnalyzeFail => {