zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit cceaa73ff26b042d0face50ed9798ef8db36deda (tree)
parent 3b921afc69139c7290d04cd33a95cb221d5d481f
Author: Andrew Kelley <superjoe30@gmail.com>
Date:   Wed,  3 May 2017 11:27:42 -0400

zig build: inherit stdin for running commands

Diffstat:
Mstd/build.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/std/build.zig b/std/build.zig @@ -539,7 +539,7 @@ pub const Builder = struct { } var child = os.ChildProcess.spawn(exe_path, args, cwd, env_map, - StdIo.Ignore, StdIo.Inherit, StdIo.Inherit, self.allocator) %% |err| + StdIo.Inherit, StdIo.Inherit, StdIo.Inherit, self.allocator) %% |err| { %%io.stderr.printf("Unable to spawn {}: {}\n", exe_path, @errorName(err)); return err;