do not exit on not installed

This commit is contained in:
Jonathan Rainville 2018-09-12 09:38:03 -04:00
parent eb7a0b905c
commit eb0c51fe30
2 changed files with 3 additions and 3 deletions

View File

@ -35,9 +35,9 @@ function compileSolc(embark, contractFiles, cb) {
const solc = shelljs.which('solc');
if (!solc) {
logger.warn('solc is not installed on your machine');
logger.error('solc is not installed on your machine');
logger.info('You can install it by following the instructions on: http://solidity.readthedocs.io/en/latest/installing-solidity.html');
process.exit();
return cb('Compiler not installed');
}
logger.info("compiling solidity contracts with command line solc...");

View File

@ -12,7 +12,7 @@
"plugin",
"contracts",
"ethereum",
"embark"
"embark"
],
"author": "Richard Ramos",
"license": "ISC",