Skip to content

Commit

Permalink
[fix] Always respond with satisfied remote dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalecki committed May 25, 2013
1 parent cbcf161 commit 7adaa92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/remote-dependencies.js
Expand Up @@ -248,7 +248,7 @@ exports.verifyRunlist = function (options, callback) {
if (missing.length) {
err = new Error('Missing remoteDependencies: ' + missing.join(', '));
err.missing = missing;
return callback(err);
return callback(err, satisfying);
}

callback(null, satisfying);
Expand Down

0 comments on commit 7adaa92

Please sign in to comment.