always use Embark's own ganache-cli (embark-ganache-cli)

This commit is contained in:
Michael Bradley, Jr 2018-07-11 11:17:07 -05:00
parent b98101ea3a
commit 319899cfb7
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class Simulator {
let cmds = []; let cmds = [];
const testrpc = shelljs.which('testrpc'); 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) { if (!testrpc && !ganache) {
this.logger.warn(__('%s is not installed on your machine', 'Ganache CLI (TestRPC)')); 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')); this.logger.info(__('You can install it by running: %s', 'npm -g install ganache-cli'));