diff options
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -66,7 +66,7 @@ fn readMeStep(b: *Builder) *std.build.Step { | |||
| 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", .{}); |
| 69 | const stream = &file.outStream(); | 69 | const stream = &file.writer(); |
| 70 | try stream.print(@embedFile("example/README.md.template"), .{ | 70 | try stream.print(@embedFile("example/README.md.template"), .{ |
| 71 | @embedFile("example/simple.zig"), | 71 | @embedFile("example/simple.zig"), |
| 72 | @embedFile("example/simple-error.zig"), | 72 | @embedFile("example/simple-error.zig"), |