Skip to content

Commit

Permalink
pull auth fix
Browse files Browse the repository at this point in the history
  • Loading branch information
apocas committed May 19, 2015
1 parent 229ddec commit 8c1450b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/docker.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Docker.prototype.createImage = function(auth, opts, callback) {
if (!callback && typeof opts === 'function') {
callback = opts;
opts = auth;
auth = undefined;
auth = opts.authconfig || undefined;
}

var self = this;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dockerode",
"description": "Docker Remote API module.",
"version": "2.1.3",
"version": "2.1.4",
"author": "Pedro Dias <[email protected]>",
"maintainers": [
"apocas <[email protected]>"
Expand Down

0 comments on commit 8c1450b

Please sign in to comment.