Skip to content

Commit

Permalink
bump ver and fix an error clause
Browse files Browse the repository at this point in the history
  • Loading branch information
Contra committed Nov 11, 2013
1 parent ce04c87 commit aa88453
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions lib/writeDir.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,7 @@ var isStream = require('./isStream');
module.exports = function (writePath, file, cb) {
// create directory
mkdirp(writePath, function (err) {
if (err) {
cb(err);
}
if (err) return cb(err);
cb(null, file);
});
};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name":"gulp",
"description":"The streaming build system",
"version":"2.2.0",
"version":"2.3.0",
"homepage":"http://github.com/wearefractal/gulp",
"repository":"git://github.com/wearefractal/gulp.git",
"author":"Fractal <[email protected]> (http://wearefractal.com/)",
Expand Down

0 comments on commit aa88453

Please sign in to comment.