fix(packaging): increased buffer size (#15840)
This commit is contained in:
parent
cb5a7efa91
commit
65af9641c2
|
@ -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);
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue