Skip to content

Commit

Permalink
Merge pull request #346 from maxharlow/master
Browse files Browse the repository at this point in the history
Promise needs to be returned
  • Loading branch information
apocas authored Mar 14, 2017
2 parents be7e3cb + 27da357 commit becd89f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/docker.js
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ Docker.prototype.buildImage = function(file, opts, callback) {
pack.finalize();
pack.pipe(zlib.createGzip()).pipe(concat(build));
} else {
build(file);
return build(file);
}
};

Expand Down

0 comments on commit becd89f

Please sign in to comment.