Skip to content

Commit

Permalink
fix: Increase log buffer for 7zip exec (#3760)
Browse files Browse the repository at this point in the history
(addresses #3704)
  • Loading branch information
dpgraham authored and develar committed Apr 1, 2019
1 parent afaa028 commit 51d2534
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/builder-util/src/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export function exec(file: string, args?: Array<string> | null, options?: ExecFi
return new Promise<string>((resolve, reject) => {
execFile(file, args, {
...options,
maxBuffer: 10 * 1024 * 1024,
maxBuffer: 1000 * 1024 * 1024,
env: getProcessEnv(options == null ? null : options.env),
}, (error, stdout, stderr) => {
if (error == null) {
Expand Down Expand Up @@ -353,4 +353,4 @@ export function executeAppBuilder(args: Array<string>, childProcessConsumer?: (c
}
handleProcess("close", childProcess, command, resolve, reject)
})
}
}

0 comments on commit 51d2534

Please sign in to comment.