Build buildscript with latest version of zig

This commit is contained in:
Komari Spaghetti 2021-06-24 17:36:12 +02:00
parent a626b5abff
commit 6338f21da9

View File

@ -53,7 +53,7 @@ pub fn build(b: *Builder) void {
fn readMeStep(b: *Builder) *std.build.Step {
const s = b.allocator.create(std.build.Step) catch unreachable;
s.* = std.build.Step.init(.Custom, "ReadMeStep", b.allocator, struct {
s.* = std.build.Step.init(.custom, "ReadMeStep", b.allocator, struct {
fn make(step: *std.build.Step) anyerror!void {
@setEvalBranchQuota(10000);
const file = try std.fs.cwd().createFile("README.md", .{});