From bfb066264dec38d0d4537b656af7a29cf9a3e8d1 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Wed, 4 Feb 2026 13:42:39 -0800 Subject: [PATCH] the run command should use the name of the main executable --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 9b707a1..2b74181 100644 --- a/build.zig +++ b/build.zig @@ -163,7 +163,7 @@ pub fn build(b: *std.Build) !void { run_module.addImport("rinnai", controlr_dep_native.module("rinnai")); const run_exe = b.addExecutable(.{ - .name = "bootstrap", + .name = exe.name, .root_module = run_module, });