Skip to content

Commit

Permalink
Add build.zig.zon to the fmt step
Browse files Browse the repository at this point in the history
  • Loading branch information
arrufat committed Apr 15, 2024
1 parent 4b99504 commit f079cd5
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 @@ -30,7 +30,7 @@ pub fn build(b: *std.Build) void {

const fmt_step = b.step("fmt", "Run zig fmt");
const fmt = b.addFmt(.{
.paths = &.{ "src", "build.zig" },
.paths = &.{ "src", "build.zig", "build.zig.zon" },
.check = true,
});
fmt_step.dependOn(&fmt.step);
Expand Down

0 comments on commit f079cd5

Please sign in to comment.