Merge pull request #819 from embark-framework/features/contarct-option-no-ipfs
Do not start storage and code_generator on --contracts
This commit is contained in:
commit
f270002c81
|
@ -205,8 +205,10 @@ class EmbarkController {
|
||||||
engine.startService("pipeline");
|
engine.startService("pipeline");
|
||||||
}
|
}
|
||||||
engine.startService("deployment", {onlyCompile: options.onlyCompile});
|
engine.startService("deployment", {onlyCompile: options.onlyCompile});
|
||||||
|
if (!options.onlyCompile) {
|
||||||
engine.startService("storage");
|
engine.startService("storage");
|
||||||
engine.startService("codeGenerator");
|
engine.startService("codeGenerator");
|
||||||
|
}
|
||||||
|
|
||||||
callback();
|
callback();
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue