mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-09 11:40:46 -05:00
Fix build on latest nightly zig
This commit is contained in:
parent
de4cf20383
commit
43ab394592
1 changed files with 1 additions and 2 deletions
|
@ -624,8 +624,7 @@ const ZiglingStep = struct {
|
|||
|
||||
const argv = [_][]const u8{exe_file};
|
||||
|
||||
const child = std.ChildProcess.init(&argv, self.builder.allocator) catch unreachable;
|
||||
defer child.deinit();
|
||||
var child = std.ChildProcess.init(&argv, self.builder.allocator);
|
||||
|
||||
child.cwd = cwd;
|
||||
child.env_map = self.builder.env_map;
|
||||
|
|
Loading…
Reference in a new issue