mirror of https://github.com/embarklabs/embark.git
fix(simulator): adds `node` to sim command to comply with Windows
This commit is contained in:
parent
3353a05c3e
commit
1a29a8f6c9
|
@ -75,7 +75,8 @@ class Simulator {
|
|||
const programName = 'ganache-cli';
|
||||
const program = ganache;
|
||||
console.log(`running: ${programName} ${cmds.join(' ')}`);
|
||||
shelljs.exec(`${program} ${cmds.join(' ')}`, {async : true});
|
||||
|
||||
shelljs.exec(`node ${program} ${cmds.join(' ')}`, {async : true});
|
||||
|
||||
if(useProxy){
|
||||
let ipcObject = new Ipc({ipcRole: 'client'});
|
||||
|
|
Loading…
Reference in New Issue