Commit 65991092f7
Changed files (1)
lib
lib/std/child_process.zig
@@ -105,8 +105,8 @@ pub const ChildProcess = struct {
.term = null,
.env_map = null,
.cwd = null,
- .uid = if (builtin.os.tag == .windows) {} else null,
- .gid = if (builtin.os.tag == .windows) {} else null,
+ .uid = if (builtin.os.tag == .windows or builtin.os.tag == .wasi) {} else null,
+ .gid = if (builtin.os.tag == .windows or builtin.os.tag == .wasi) {} else null,
.stdin = null,
.stdout = null,
.stderr = null,