We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bcfa7e commit a100d30Copy full SHA for a100d30
lib/index.js
@@ -227,8 +227,8 @@ var Embark = {
227
var self = this;
228
async.waterfall([
229
function buildAndDeploy(callback) {
230
- Embark.buildAndDeploy(function(contractsManager) {
231
- callback(null, contractsManager);
+ Embark.buildAndDeploy(function(err, contractsManager) {
+ callback(err, contractsManager);
232
});
233
},
234
function generateABI(contractsManager, callback) {
0 commit comments