Skip to content

Commit

Permalink
fix: maxBuffer
Browse files Browse the repository at this point in the history
  • Loading branch information
sammcj committed Nov 29, 2022
1 parent 3f93623 commit 9e58214
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ const execCmd = (command, workingDir, trimResult = true) => {
command,
{
cwd: workingDir,
maxBuffer: 4194304
maxBuffer: 1024 * 1024 * 4
},
function(error, stdout) {
error ? reject(error) : resolve(
Expand Down

0 comments on commit 9e58214

Please sign in to comment.