From 06a01dad6bd57375e0e60f626c2dcebe105d34ed Mon Sep 17 00:00:00 2001 From: torque Date: Thu, 11 May 2023 18:24:39 -0700 Subject: [PATCH] build.zig: fix for newer compiler --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 7ee2e84..b69ecf2 100644 --- a/build.zig +++ b/build.zig @@ -74,6 +74,6 @@ fn zed(b: *std.build.Builder, target: anytype, optimize: anytype) void { .optimize = optimize, }); - const runcmd = tests.run(); + const runcmd = b.addRunArtifact(tests); test_step.dependOn(&runcmd.step); }