From e0d4b9282bc358464e83551736d63ff793c55571 Mon Sep 17 00:00:00 2001 From: nullptrdevs <16590917+nullptrdevs@users.noreply.github.com> Date: Sun, 4 Jun 2023 21:55:30 -0700 Subject: [PATCH] `executeBuildRunner`: increase `.max_output_bytes` --- src/DocumentStore.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/DocumentStore.zig b/src/DocumentStore.zig index 703fbaa..4646015 100644 --- a/src/DocumentStore.zig +++ b/src/DocumentStore.zig @@ -505,6 +505,7 @@ pub fn executeBuildRunner( .allocator = allocator, .argv = args, .cwd = build_file_directory_path, + .max_output_bytes = 1024 * 100, }); }