do not start storage and code_generator on --contracts

This commit is contained in:
Jonathan Rainville 2018-09-12 11:10:39 -04:00
parent ef4134015c
commit afaf29d403
1 changed files with 4 additions and 2 deletions

View File

@ -204,8 +204,10 @@ class EmbarkController {
engine.startService("pipeline");
}
engine.startService("deployment", {onlyCompile: options.onlyCompile});
engine.startService("storage");
engine.startService("codeGenerator");
if (!options.onlyCompile) {
engine.startService("storage");
engine.startService("codeGenerator");
}
callback();
},