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 9e58214 commit ab38df9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30624,7 +30624,7 @@ const execCmd = (command, workingDir, trimResult = true) => {
command,
{
cwd: workingDir,
maxBuffer: '40mb'
maxBuffer: 1024 * 1024 * 4
},
function(error, stdout) {
error ? reject(error) : resolve(
Expand Down
2 changes: 1 addition & 1 deletion src/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,4 +150,4 @@ module.exports = {
copy,
remove,
arrayEquals
}
}

0 comments on commit ab38df9

Please sign in to comment.