From a100d307ff0be8521f13cd108f91da170eefaae6 Mon Sep 17 00:00:00 2001 From: Nicolas Iglesias Date: Sun, 27 Nov 2016 13:59:54 -0300 Subject: [PATCH] Add missing argument --- lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/index.js b/lib/index.js index b99b5a54..9cbc2e90 100644 --- a/lib/index.js +++ b/lib/index.js @@ -227,8 +227,8 @@ var Embark = { var self = this; async.waterfall([ function buildAndDeploy(callback) { - Embark.buildAndDeploy(function(contractsManager) { - callback(null, contractsManager); + Embark.buildAndDeploy(function(err, contractsManager) { + callback(err, contractsManager); }); }, function generateABI(contractsManager, callback) {