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