From c1c61de2d54c917a15b7c4b68477c1067e735331 Mon Sep 17 00:00:00 2001 From: Eric Mastro Date: Fri, 13 Apr 2018 15:30:45 +1000 Subject: [PATCH] Passed in success messaging to async callback. --- lib/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/index.js b/lib/index.js index 8812a2d60..755a2b166 100644 --- a/lib/index.js +++ b/lib/index.js @@ -289,7 +289,7 @@ class Embark { engine.logger.debug('deploying to ' + platform + '...'); cmdPlugin.uploadCmds[0].cb() .then((success) => { - callback(); + callback(null, success); }) .catch((err) => { callback(err);