diff options
| author | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-08-08 20:21:11 +0200 |
|---|---|---|
| committer | Chris Boesch <chrboesch@noreply.codeberg.org> | 2025-08-08 20:21:11 +0200 |
| commit | 711cb70c5ac23da50ea830366c418cc40d537e0f (patch) | |
| tree | 3a7a59d347c5021249e5ff13e58d90cfd3119103 | |
| parent | 1f6ce9a2684149c99606ba2ccbfa7092d72cdeae (diff) | |
| parent | 9bff77a12a4f6eedeadbd2ad6076be4fe2c4e804 (diff) | |
Merge pull request 'Fix: The initial zig build fail due to wrong number of arguments passed in self.step.evalZigProcess()' (#286) from DoKoB/exercises:fix/initial-zig-build into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/286
| -rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -519,7 +519,7 @@ const ZiglingStep = struct { // NOTE: After many changes in zig build system, we need to create the cache path manually. // See https://github.com/ziglang/zig/pull/21115 // Maybe there is a better way (in the future). - const exe_dir = try self.step.evalZigProcess(zig_args.items, prog_node, false); + const exe_dir = try self.step.evalZigProcess(zig_args.items, prog_node, false, null, b.allocator); const exe_name = switch (self.exercise.kind) { .exe => self.exercise.name(), .@"test" => "test", |
