diff options
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -62,7 +62,7 @@ pub fn build(b: *Builder) void { | |||
| 62 | 62 | ||
| 63 | fn readMeStep(b: *Builder) *std.build.Step { | 63 | fn readMeStep(b: *Builder) *std.build.Step { |
| 64 | const s = b.allocator.create(std.build.Step) catch unreachable; | 64 | const s = b.allocator.create(std.build.Step) catch unreachable; |
| 65 | s.* = std.build.Step.init("ReadMeStep", b.allocator, struct { | 65 | s.* = std.build.Step.init(.Custom, "ReadMeStep", b.allocator, struct { |
| 66 | fn make(step: *std.build.Step) anyerror!void { | 66 | fn make(step: *std.build.Step) anyerror!void { |
| 67 | @setEvalBranchQuota(10000); | 67 | @setEvalBranchQuota(10000); |
| 68 | const file = try std.fs.cwd().createFile("README.md", .{}); | 68 | const file = try std.fs.cwd().createFile("README.md", .{}); |