the run command should use the name of the main executable

This commit is contained in:
Emil Lerch 2026-02-04 13:42:39 -08:00
parent bde519af0b
commit bfb066264d
Signed by: lobo
GPG key ID: A7B62D657EF764F8

View file

@ -163,7 +163,7 @@ pub fn build(b: *std.Build) !void {
run_module.addImport("rinnai", controlr_dep_native.module("rinnai")); run_module.addImport("rinnai", controlr_dep_native.module("rinnai"));
const run_exe = b.addExecutable(.{ const run_exe = b.addExecutable(.{
.name = "bootstrap", .name = exe.name,
.root_module = run_module, .root_module = run_module,
}); });