| author | |
| committer | |
| log | f8e1257b62b1ea5fac700e55b2597a38af82f75a |
| tree | 9ce517a05d346273f73f345537d3d8455ee77703 |
| parent | 09d96c4903926052c3141d6cfe036960adc54049 |
1 files changed, 1 insertions(+), 4 deletions(-)
lib/std/process/Child.zig+1-4| ... | ... | @@ -125,10 +125,7 @@ pub fn wait(child: *Child, io: Io) WaitError!Term { |
| 125 | 125 | return io.vtable.childWait(io.userdata, child); |
| 126 | 126 | } |
| 127 | 127 | |
| 128 | pub const CollectOutputError = error{ | |
| 129 | Timeout, | |
| 130 | StreamTooLong, | |
| 131 | } || Allocator.Error || Io.File.Reader.Error; | |
| 128 | pub const CollectOutputError = error{StreamTooLong} || Allocator.Error || Io.File.Reader.Error; | |
| 132 | 129 | |
| 133 | 130 | pub const CollectOutputOptions = struct { |
| 134 | 131 | stdout: *std.ArrayList(u8), |