add process exit

This commit is contained in:
Jonathan Rainville 2018-05-23 11:13:51 -04:00
parent 688a39b8bc
commit 77fad169aa
2 changed files with 4 additions and 2 deletions

View File

@ -123,5 +123,6 @@
"Starting Blockchain node in another process": "Starting Blockchain node in another process",
"Blockchain node is ready": "Blockchain node is ready",
"terminating due to error": "terminating due to error",
"Unable to start the blockchain process. Is Geth installed?": "Unable to start the blockchain process. Is Geth installed?"
"Unable to start the blockchain process. Is Geth installed?": "Unable to start the blockchain process. Is Geth installed?",
"Cannot upload: {{platform}} node is not running on {{protocol}}://{{host}}:{{port}}.": "Cannot upload: {{platform}} node is not running on {{protocol}}://{{host}}:{{port}}."
}

View File

@ -174,6 +174,7 @@ class Embark {
engine.logger.warn(__("tip: you can resize the terminal or disable the dashboard with") + " embark run --nodashboard".bold.underline);
}
}
process.exit();
});
}
@ -283,8 +284,8 @@ class Embark {
graphGen.generate(options);
engine.logger.info(__("Done. %s generated", "./diagram.svg").underline);
process.exit();
}
process.exit();
});
}