We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c602ff8 commit 6205557Copy full SHA for 6205557
install/install.js
@@ -80,7 +80,7 @@ process.env['OPENCV4NODEJS_LIBRARIES'] = libs.join('\n')
80
const flags = process.env.BINDINGS_DEBUG ? '--jobs max --debug' : '--jobs max'
81
const nodegypCmd = 'node-gyp rebuild ' + flags
82
log.info('install', `spawning node gyp process: ${nodegypCmd}`)
83
-const child = child_process.exec(nodegypCmd, {}, function(err, stdout, stderr) {
+const child = child_process.exec(nodegypCmd, { maxBuffer: Infinity }, function(err, stdout, stderr) {
84
const _err = err || stderr
85
if (_err) log.error(_err)
86
})
0 commit comments