From f5464b691f59c8157a34591871834fd96a6999ee Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Wed, 11 Jul 2018 13:01:27 -0500 Subject: [PATCH] Embark's own ganache-cli will always be found --- lib/cmds/simulator.js | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/lib/cmds/simulator.js b/lib/cmds/simulator.js index 4d821746..b535b407 100644 --- a/lib/cmds/simulator.js +++ b/lib/cmds/simulator.js @@ -15,11 +15,11 @@ class Simulator { const testrpc = shelljs.which('testrpc'); const ganache = shelljs.which('ganache-cli-embark'); - if (!testrpc && !ganache) { - this.logger.warn(__('%s is not installed on your machine', 'Ganache CLI (TestRPC)')); - this.logger.info(__('You can install it by running: %s', 'npm -g install ganache-cli')); - process.exit(); - } + // if (!testrpc && !ganache) { + // this.logger.warn(__('%s is not installed on your machine', 'Ganache CLI (TestRPC)')); + // this.logger.info(__('You can install it by running: %s', 'npm -g install ganache-cli')); + // process.exit(); + // } let useProxy = this.blockchainConfig.proxy || false; let host = (dockerHostSwap(options.host || this.blockchainConfig.rpcHost) || defaultHost); @@ -45,8 +45,10 @@ class Simulator { cmds.push("-b \"" + (simulatorBlocktime) +"\""); } - const programName = ganache ? 'ganache-cli' : 'testrpc'; - const program = ganache ? ganache : testrpc; + // const programName = ganache ? 'ganache-cli' : 'testrpc'; + // const program = ganache ? ganache : testrpc; + const programName = 'ganache-cli'; + const program = ganache; console.log(`running: ${programName} ${cmds.join(' ')}`); shelljs.exec(`${program} ${cmds.join(' ')}`, {async : true});