We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5217898 commit 209b2dfCopy full SHA for 209b2df
1 file changed
browser/model/helpers/installer.js
@@ -37,7 +37,7 @@ class Installer {
37
execFile(file, args, result) {
38
return new Promise((resolve, reject) => {
39
Logger.info(this.key + ' - Execute ' + file + ' ' + args);
40
- child_process.execFile(file, args, {'maxBuffer': 1024*1024} , (error, stdout, stderr) => {
+ child_process.execFile(file, args, {'maxBuffer': 1024*1024*2} , (error, stdout, stderr) => {
41
// vagrant exits with code 3010
42
if (error && error.code !== 3010) {
43
Logger.error(this.key + ' - ' + error);
0 commit comments