Skip to content

Commit 8bd80df

Browse files
committed
generator: Increase the buffer used with gzip
Packages.gz for jammy-updates now expands to more than 10MB. With the previous buffer size, ProcessExecutor.TooMuchProcessOutputError would be thrown when unpacking this file.
1 parent a14657f commit 8bd80df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SwiftSDKGenerator/SystemUtils/ByteBuffer+Utils.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public extension ByteBuffer {
2121
standardInput: [self].async,
2222
collectStandardOutput: true,
2323
collectStandardError: false,
24-
perStreamCollectionLimitBytes: 10 * 1024 * 1024
24+
perStreamCollectionLimitBytes: 20 * 1024 * 1024
2525
)
2626

2727
try result.exitReason.throwIfNonZero()

0 commit comments

Comments
 (0)