From 0180bb7cb2743e1297ffe86f35df2ba77fee18f5 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Wed, 11 Jul 2018 11:17:07 -0500 Subject: [PATCH] always use Embark's own ganache-cli (embark-ganache-cli) --- lib/cmds/simulator.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cmds/simulator.js b/lib/cmds/simulator.js index d72c04d24..a728adece 100644 --- a/lib/cmds/simulator.js +++ b/lib/cmds/simulator.js @@ -14,7 +14,7 @@ class Simulator { let cmds = []; const testrpc = shelljs.which('testrpc'); - const ganache = shelljs.which('ganache-cli') || shelljs.which('embark-ganache-cli'); + const ganache = shelljs.which('embark-ganache-cli'); 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'));