diff options
| author | Alexander Saltanov <[email protected]> | 2024-02-06 00:06:19 +0300 |
|---|---|---|
| committer | Alexander Saltanov <[email protected]> | 2024-02-06 00:06:19 +0300 |
| commit | 755911747fe9f4833e006421cde7961089533f47 (patch) | |
| tree | 2bd9819855b221da270ca441803e8932df7400e8 /build.zig | |
| parent | fa22e861d5b8b63e0f34934e9a21544ad25b4110 (diff) | |
| download | ziglings-755911747fe9f4833e006421cde7961089533f47.tar.xz ziglings-755911747fe9f4833e006421cde7961089533f47.zip | |
Fix zig_exe location in Build struct
Reflect Zig breaking changes as of https://github.com/ziglang/zig/commit/105db13536b4dc2affe130cb8d2eee6c97c89bcd
Diffstat (limited to 'build.zig')
| -rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -386,7 +386,7 @@ const ZiglingStep = struct { var zig_args = std.ArrayList([]const u8).init(b.allocator); defer zig_args.deinit(); - zig_args.append(b.zig_exe) catch @panic("OOM"); + zig_args.append(b.graph.zig_exe) catch @panic("OOM"); const cmd = switch (self.exercise.kind) { .exe => "build-exe", |
