| author | |
| committer | |
| log | e919fbea9fd62e55ebbfb0739a2a468c93673e93 |
| tree | add808cf69ade7a0aeb4ff1fc1235e98d40ffe98 |
| parent | c07d6e4c17ab555250e75bd053d27fd7df20f928 |
| signature |
closes #168661 files changed, 1 insertions(+), 1 deletions(-)
lib/std/Build/Step/Run.zig+1-1| ... | ... | @@ -993,7 +993,7 @@ fn spawnChildAndCollect( |
| 993 | 993 | if (self.captured_stdout != null) child.stdout_behavior = .Pipe; |
| 994 | 994 | if (self.captured_stderr != null) child.stderr_behavior = .Pipe; |
| 995 | 995 | if (self.stdin != .none) { |
| 996 | assert(child.stdin_behavior != .Inherit); | |
| 996 | assert(self.stdio != .inherit); | |
| 997 | 997 | child.stdin_behavior = .Pipe; |
| 998 | 998 | } |
| 999 | 999 |