diff options
author | Dave Gauer <dave@ratfactor.com> | 2021-06-14 10:20:16 -0400 |
---|---|---|
committer | Dave Gauer <dave@ratfactor.com> | 2021-06-14 10:20:16 -0400 |
commit | dcf9cac73d7fc35b9d10cb5316f042218599bfd9 (patch) | |
tree | dd52f11be034f8338e17ed263de0138e6dd91fe4 | |
parent | d09ae39714bbca6e12c67939509a36faa6a76198 (diff) | |
download | ziglings-dcf9cac73d7fc35b9d10cb5316f042218599bfd9.tar.gz ziglings-dcf9cac73d7fc35b9d10cb5316f042218599bfd9.tar.bz2 ziglings-dcf9cac73d7fc35b9d10cb5316f042218599bfd9.tar.xz ziglings-dcf9cac73d7fc35b9d10cb5316f042218599bfd9.zip |
Updated to master build 0.9.0-dev.137
-rw-r--r-- | build.zig | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -556,7 +556,7 @@ pub fn build(b: *Builder) void { named_verify.dependOn(&verify_step.step); const chain_verify = b.allocator.create(Step) catch unreachable; - chain_verify.* = Step.initNoOp(.Custom, b.fmt("chain {s}", .{key}), b.allocator); + chain_verify.* = Step.initNoOp(.custom, b.fmt("chain {s}", .{key}), b.allocator); chain_verify.dependOn(&verify_step.step); const named_chain = b.step(b.fmt("{s}_start", .{key}), b.fmt("Check all solutions starting at {s}", .{ex.main_file})); @@ -583,7 +583,7 @@ const ZiglingStep = struct { pub fn create(builder: *Builder, exercise: Exercise, use_healed: bool) *@This() { const self = builder.allocator.create(@This()) catch unreachable; self.* = .{ - .step = Step.init(.Custom, exercise.main_file, builder.allocator, make), + .step = Step.init(.custom, exercise.main_file, builder.allocator, make), .exercise = exercise, .builder = builder, .use_healed = use_healed, |