From 2784303145b7ba5bc98e2546b1110a7141cfe64a Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Wed, 11 Jul 2018 12:55:08 -0500 Subject: [PATCH] embark-ganache-cli -> ganache-cli-embark --- lib/cmds/simulator.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cmds/simulator.js b/lib/cmds/simulator.js index a53fba6c..7074b0a0 100644 --- a/lib/cmds/simulator.js +++ b/lib/cmds/simulator.js @@ -13,7 +13,7 @@ class Simulator { let cmds = []; const testrpc = shelljs.which('testrpc'); - const ganache = shelljs.which('embark-ganache-cli'); + 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')); diff --git a/package.json b/package.json index be064bca..2601ed35 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ }, "bin": { "embark": "./bin/embark", - "embark-ganache-cli": "./node_modules/.bin/ganache-cli" + "ganache-cli-embark": "./node_modules/.bin/ganache-cli" }, "main": "./lib/index.js", "directories": {