From 235dde6844d697e73e974c2311c69abf3a57b0f8 Mon Sep 17 00:00:00 2001 From: Damien Mehala Date: Sun, 8 Mar 2026 15:51:09 +0100 Subject: [PATCH] fix: list-actions outputs without `--docs` Explicitly flush the buffer once the generation is complete. Resolves #11221 --- src/cli/list_actions.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/cli/list_actions.zig b/src/cli/list_actions.zig index 682eed251..aaef1195e 100644 --- a/src/cli/list_actions.zig +++ b/src/cli/list_actions.zig @@ -46,6 +46,7 @@ pub fn run(alloc: Allocator) !u8 { opts.docs, std.heap.page_allocator, ); + try stdout_writer.interface.flush(); return 0; }