Commit 87cde115 authored by nanahira's avatar nanahira

fix size

parent 3b508ed3
Pipeline #4826 passed with stages
in 2 minutes and 44 seconds
...@@ -180,7 +180,6 @@ export class PackagerService extends ConsoleLogger { ...@@ -180,7 +180,6 @@ export class PackagerService extends ConsoleLogger {
const stream = new Stream.Writable(); const stream = new Stream.Writable();
const child = child_process.spawn('tar', ['--zstd', '-cf', '-'].concat(files), { const child = child_process.spawn('tar', ['--zstd', '-cf', '-'].concat(files), {
cwd: root, cwd: root,
maxBuffer: 200 * 1024 * 1024,
}); });
const childPromise = new Promise<void>((resolve, reject) => { const childPromise = new Promise<void>((resolve, reject) => {
child.on('exit', (code) => { child.on('exit', (code) => {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment