Skip to content
This repository has been archived by the owner on Jul 3, 2019. It is now read-only.

Commit

Permalink
fix(verify): return fixOwner.chownr promise
Browse files Browse the repository at this point in the history
  • Loading branch information
zkat committed Mar 14, 2017
1 parent 9566876 commit 6818521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/verify.js
Expand Up @@ -57,7 +57,7 @@ function fixPerms (cache, opts) {
opts.log && opts.log.silly('verify', 'fixing cache permissions')
return fixOwner.mkdirfix(cache, opts.uid, opts.gid).then(() => {
// TODO - fix file permissions too
fixOwner.chownr(cache, opts.uid, opts.gid)
return fixOwner.chownr(cache, opts.uid, opts.gid)
}).then(() => null)
}

Expand Down

0 comments on commit 6818521

Please sign in to comment.