Added exit if installation fails

This commit is contained in:
Kasra Bigdeli
2018-05-15 21:40:49 -07:00
parent dfc147f7eb
commit 668a3e209b
@@ -309,6 +309,7 @@ module.exports.install = function () {
.catch(function (error) {
console.log('Installation failed.');
console.error(error);
process.exit();
});
};