From a0e755e06f203cecf44eab301eae4b22e5fe5573 Mon Sep 17 00:00:00 2001 From: Asherah Connor Date: Sat, 22 Aug 2020 11:35:34 +1000 Subject: add build step id --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build.zig') diff --git a/build.zig b/build.zig index ba92f3d..8ecc3f3 100644 --- a/build.zig +++ b/build.zig @@ -59,7 +59,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("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", .{}); -- cgit v1.2.3