fix(packaging): increased buffer size (#15840)

This commit is contained in:
Isaac Brown 2017-04-14 09:03:57 -07:00 committed by Tobias Bosch
parent cb5a7efa91
commit 65af9641c2
1 changed files with 2 additions and 1 deletions

View File

@ -2,5 +2,6 @@
module.exports = (gulp) => (done) => {
const path = require('path');
const childProcess = require('child_process');
childProcess.exec(path.join(__dirname, '../../build.sh'), done);
// increase maxbuffer to address out of memory exception when running certain tasks
childProcess.exec(path.join(__dirname, '../../build.sh'), {maxBuffer: 300 * 1024}, done);
};