From ce3342396dce42231090c494f3eaf8ce0ef015ee Mon Sep 17 00:00:00 2001 From: cgewecke Date: Mon, 26 Jun 2017 14:46:51 -0700 Subject: [PATCH] Change testrpc path for yarn compatibility --- bin/exec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/exec.js b/bin/exec.js index 8ebe94b..c192a98 100644 --- a/bin/exec.js +++ b/bin/exec.js @@ -147,7 +147,7 @@ try { if (!config.norpc) { const defaultRpcOptions = `--gasLimit ${gasLimitString} --accounts ${accounts} --port ${port}`; const testrpcOptions = config.testrpcOptions || defaultRpcOptions; - const command = './node_modules/.bin/testrpc-sc '; + const command = './node_modules/ethereumjs-testrpc-sc/bin/testrpc '; testrpcProcess = childprocess.exec(command + testrpcOptions, null, err => { if (err) cleanUp('testRpc errored after launching as a childprocess.');