Skip to content

Commit

Permalink
tweak(arduino-cli): increase maxBuffer size for spawned processes
Browse files Browse the repository at this point in the history
  • Loading branch information
evgenykochetkov committed Jun 24, 2020
1 parent 7bb541a commit cfeafaf
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/arduino-cli/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import parseProgressLog from './parseProgressLog';
const spawn = (bin, args, options) =>
promisifyChildProcess(crossSpawn(bin, args, options), {
encoding: 'utf8',
maxBuffer: 10 * 1024 * 1024,
});

const noop = () => {};
Expand Down

0 comments on commit cfeafaf

Please sign in to comment.