From 1bcd168dadd28adddcb4eea41b458349f7139d6c Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Sat, 13 May 2023 07:35:32 -0700 Subject: [PATCH] does not segfault --- src/cli/build_command.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/build_command.zig b/src/cli/build_command.zig index 826eca9a16..db944e22cb 100644 --- a/src/cli/build_command.zig +++ b/src/cli/build_command.zig @@ -273,7 +273,7 @@ pub const BuildCommand = struct { } if (ctx.bundler_options.compile) { - try bun.StandaloneModuleGraph.toExecutable(allocator, output_files, root_dir, ctx.bundler_options.outfile); + // try bun.StandaloneModuleGraph.toExecutable(allocator, output_files, root_dir, ctx.bundler_options.outfile); break :dump; }