summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJonathan Lopez <54177704+otherJL0@users.noreply.github.com>2022-05-20 16:07:17 -0400
committerGitHub <noreply@github.com>2022-05-20 16:07:17 -0400
commit392a3ca9c617c564e29ff19e5ac97c23de5809d6 (patch)
tree872a8ecdfc6c17b2f95f369e016b2699d46d700a
parent955bf3eead42fb2d89dc53123045fddd739e7bc0 (diff)
parent6955f2c067f4d36b30219931cf13832ebad6a3c4 (diff)
Merge branch 'main' into 047_methods
-rw-r--r--build.zig3
1 files changed, 1 insertions, 2 deletions
diff --git a/build.zig b/build.zig
index 8471ca7..d4fdb8e 100644
--- a/build.zig
+++ b/build.zig
@@ -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;