mirror of https://github.com/embarklabs/embark.git
do not start storage and code_generator on --contracts
This commit is contained in:
parent
ef4134015c
commit
afaf29d403
|
@ -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();
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue