No need for pipeline service, assets are not compiled

This commit is contained in:
Anthony Laibe 2018-07-23 14:33:03 +01:00
parent 08a3879453
commit da1691327a
1 changed files with 1 additions and 5 deletions

View File

@ -263,7 +263,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");
@ -277,10 +276,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});