Skip to content

Commit

Permalink
Fix an accidental Module copy in build.zig.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexrp committed Jun 21, 2024
1 parent 5a378f1 commit b44ad9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ pub fn build(b: *std.Build) anyerror!void {
else => true,
};

var exe_mod = exe_step.root_module;
const exe_mod = &exe_step.root_module;

exe_mod.addImport("graf", graf_mod);
exe_mod.addImport("clap", clap_mod);
Expand Down

0 comments on commit b44ad9c

Please sign in to comment.