From d8a6987d37d5762ef303a0261feca9ac98297fd7 Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Mon, 23 Jul 2018 14:33:03 +0100 Subject: [PATCH] No need for pipeline service, assets are not compiled --- lib/index.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/index.js b/lib/index.js index b0f1f41a9..4746e66a6 100644 --- a/lib/index.js +++ b/lib/index.js @@ -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});