Skip to content

Commit

Permalink
Fix a typo in the code (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
wewei authored and mafintosh committed Jun 20, 2018
1 parent a35ce2f commit 570eefb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ function validate (fs, name, root, cb) {
}

function mkdirfix (name, opts, cb) {
mkdirp(name, {fs: opts.xfs}, function (err, made) {
mkdirp(name, {fs: opts.fs}, function (err, made) {
if (!err && made && opts.own) {
chownr(made, opts.uid, opts.gid, cb)
} else {
Expand Down

0 comments on commit 570eefb

Please sign in to comment.