Skip to content
This repository was archived by the owner on May 16, 2025. It is now read-only.

Commit b44ad9c

Browse files
committed
Fix an accidental Module copy in build.zig.
1 parent 5a378f1 commit b44ad9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ pub fn build(b: *std.Build) anyerror!void {
224224
else => true,
225225
};
226226

227-
var exe_mod = exe_step.root_module;
227+
const exe_mod = &exe_step.root_module;
228228

229229
exe_mod.addImport("graf", graf_mod);
230230
exe_mod.addImport("clap", clap_mod);

0 commit comments

Comments
 (0)