diff options
author | Jonathan Lopez <54177704+otherJL0@users.noreply.github.com> | 2022-05-20 16:07:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-20 16:07:17 -0400 |
commit | cf0fa9b9a0bdca658cc15624903fae884cefe947 (patch) | |
tree | 872a8ecdfc6c17b2f95f369e016b2699d46d700a | |
parent | 57a38303acce2221548ce44fb47a0b64b90c4625 (diff) | |
parent | 1a89e4ebf13756541916cf5ed47866a3dd7e74df (diff) | |
download | ziglings-cf0fa9b9a0bdca658cc15624903fae884cefe947.tar.gz ziglings-cf0fa9b9a0bdca658cc15624903fae884cefe947.tar.bz2 ziglings-cf0fa9b9a0bdca658cc15624903fae884cefe947.tar.xz ziglings-cf0fa9b9a0bdca658cc15624903fae884cefe947.zip |
Merge branch 'main' into 047_methods
-rw-r--r-- | build.zig | 3 |
1 files changed, 1 insertions, 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; |