Skip to content

Commit

Permalink
[fix] Fix undefined references
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalecki committed Jul 30, 2012
1 parent a1fbe4f commit c914cce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/haibu/drone/drone.js
Expand Up @@ -117,8 +117,8 @@ Drone.prototype.deploy = function (userId, appId, stream, callback) {

self.start(pkg, function (err, result) {
if (err) {
haibu.emit([pkg.user, id, 'error', 'service'], 'error', err);
return calback(err);
haibu.emit([pkg.user, pkg.name, 'error', 'service'], 'error', err);
return callback(err);
}

var record = self.apps[appId];
Expand Down

0 comments on commit c914cce

Please sign in to comment.