2017-02-03 03:10:41 -05:00
|
|
|
|
|
|
|
module.exports = (gulp) => (done) => {
|
|
|
|
const path = require('path');
|
|
|
|
const childProcess = require('child_process');
|
2017-04-14 12:03:57 -04:00
|
|
|
// increase maxbuffer to address out of memory exception when running certain tasks
|
|
|
|
childProcess.exec(path.join(__dirname, '../../build.sh'), {maxBuffer: 300 * 1024}, done);
|
2017-02-03 03:10:41 -05:00
|
|
|
};
|