Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[fix] Properly use double-negative config setting.
  • Loading branch information
indexzero committed Feb 7, 2013
1 parent fe786c4 commit 6571919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/haibu/repositories/repository.js
Expand Up @@ -94,7 +94,7 @@ Repository.prototype.installDependencies = function (callback) {
}
}

return noNpm !== false
return noNpm !== true
? haibu.common.npm.install(self.homeDir, self.app, callback)
: callback(null, self.app.dependencies);
});
Expand Down

0 comments on commit 6571919

Please sign in to comment.