diff options
| author | 2020-04-11 11:44:58 +0200 | |
|---|---|---|
| committer | 2020-04-11 11:44:58 +0200 | |
| commit | 5fe26bb6ee767490a39f18eec84c19464931bf98 (patch) | |
| tree | dd15e152a99492063f1c09fdc51dabbb2dc67d72 /build.zig | |
| parent | Merge pull request #15 from dbandstra/zig-master (diff) | |
| download | zig-clap-5fe26bb6ee767490a39f18eec84c19464931bf98.tar.gz zig-clap-5fe26bb6ee767490a39f18eec84c19464931bf98.tar.xz zig-clap-5fe26bb6ee767490a39f18eec84c19464931bf98.zip | |
update to latest zig
Diffstat (limited to '')
| -rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -59,7 +59,7 @@ fn readMeStep(b: *Builder) *std.build.Step { | |||
| 59 | fn make(step: *std.build.Step) anyerror!void { | 59 | fn make(step: *std.build.Step) anyerror!void { |
| 60 | @setEvalBranchQuota(10000); | 60 | @setEvalBranchQuota(10000); |
| 61 | const file = try std.fs.cwd().createFile("README.md", .{}); | 61 | const file = try std.fs.cwd().createFile("README.md", .{}); |
| 62 | const stream = &file.outStream().stream; | 62 | const stream = &file.outStream(); |
| 63 | try stream.print(@embedFile("example/README.md.template"), .{ | 63 | try stream.print(@embedFile("example/README.md.template"), .{ |
| 64 | @embedFile("example/simple.zig"), | 64 | @embedFile("example/simple.zig"), |
| 65 | @embedFile("example/simple-error.zig"), | 65 | @embedFile("example/simple-error.zig"), |