No need for pipeline service, assets are not compiled

This commit is contained in:
Anthony Laibe 2018-07-23 14:33:03 +01:00 committed by Iuri Matias
parent 692014aa8d
commit d8a6987d37
1 changed files with 1 additions and 5 deletions

View File

@ -260,7 +260,6 @@ class Embark {
engine.startService("libraryManager");
engine.startService("codeRunner");
engine.startService("web3");
engine.startService("pipeline");
engine.startService("deployment", {onlyCompile: false});
engine.startService("storage");
engine.startService("codeGenerator");
@ -274,10 +273,7 @@ class Embark {
},
function waitForWriteFinish(callback) {
engine.logger.info("Finished deploying".underline);
engine.events.on('outputDone', (err) => {
engine.logger.info(__("finished building").underline);
callback(err);
});
callback();
},
function startREPL(callback) {
let repl = new REPL({env: engine.env});