@@ -46,7 +46,7 @@ public protocol OutputProtocol: Sendable, ~Copyable {
4646#endif 
4747extension  OutputProtocol  { 
4848    /// The max amount of data to collect for this output.
49-     public  var  maxSize :  Int  {  128   *   1024  } 
49+     public  var  maxSize :  Int  {  . max  } 
5050} 
5151
5252/// A concrete `Output` type for subprocesses that indicates that
@@ -240,10 +240,9 @@ extension OutputProtocol where Self == FileDescriptorOutput {
240240@available ( SubprocessSpan,  * )  
241241#endif 
242242extension  OutputProtocol  where  Self ==  StringOutput < UTF8 >  { 
243-     /// Create a `Subprocess` output that collects output as
244-     /// UTF8 String with 128kb limit.
243+     /// Create a `Subprocess` output that collects output as UTF8 String
245244    public  static  var  string :  Self  { 
246-         . init( limit:  128   *   1024 ,  encoding:  UTF8 . self) 
245+         . init( limit:  . max ,  encoding:  UTF8 . self) 
247246    } 
248247} 
249248
@@ -265,9 +264,8 @@ extension OutputProtocol {
265264@available ( SubprocessSpan,  * )  
266265#endif 
267266extension  OutputProtocol  where  Self ==  BytesOutput  { 
268-     /// Create a `Subprocess` output that collects output as
269-     /// `Buffer` with 128kb limit.
270-     public  static  var  bytes :  Self  {  . init( limit:  128  *  1024 )  } 
267+     /// Create a `Subprocess` output that collects output as `Buffer` 
268+     public  static  var  bytes :  Self  {  . init( limit:  . max)  } 
271269
272270    /// Create a `Subprocess` output that collects output as
273271    /// `Buffer` up to limit it bytes.
0 commit comments