exit with 1

This commit is contained in:
Jonathan Rainville 2018-09-05 11:48:14 -04:00
parent 56147ba200
commit 74e9974c00
1 changed files with 1 additions and 1 deletions

View File

@ -457,7 +457,7 @@ class EmbarkController {
if (engine.config.embarkConfig.config.storage === false || engine.config.storageConfig.enabled === false) {
engine.logger.error(__('Storage configuration is disabled in embark.json. Please provide a storage file before uploading'));
engine.logger.info(__('You can find an example here: %s', 'https://github.com/embark-framework/embark/blob/master/templates/demo/config/storage.js'.underline));
process.exit();
process.exit(1);
}
platform = engine.config.storageConfig.upload.provider;
callback();