Merge pull request #290 from maxsam4/fix-289

Added 'node' to a command
pull/306/head
c-g-e-w-e-k-e- 6 years ago committed by GitHub
commit 62ab3e5d90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      lib/app.js

@ -214,7 +214,7 @@ class App {
// Launch
const execOpts = {maxBuffer: 1024 * 1024 * 10};
this.testrpcProcess = childprocess.exec(`${command} ${options}`, execOpts, (err, stdout, stderr) => {
this.testrpcProcess = childprocess.exec(`node ${command} ${options}`, execOpts, (err, stdout, stderr) => {
if (err) {
if (stdout) this.log(`testRpc stdout:\n${stdout}`);
if (stderr) this.log(`testRpc stderr:\n${stderr}`);

Loading…
Cancel
Save