From 4109fddd8903caadb1636b207bea83fd8e3c0300 Mon Sep 17 00:00:00 2001 From: chip2n Date: Fri, 4 Aug 2023 17:48:48 +0200 Subject: [PATCH] Update to latest zig master --- build.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.zig b/build.zig index 134e586..dc09024 100644 --- a/build.zig +++ b/build.zig @@ -26,7 +26,7 @@ pub fn build(b: *Builder) void { }); // Set package path to root directory to allow access to examples/ dir - main_tests.main_pkg_path = "."; + main_tests.main_pkg_path = .{ .path = "." }; const run_main_tests = b.addRunArtifact(main_tests); const test_step = b.step("test", "Run library tests");