PATH:
usr
/
local
/
lib
/
node_modules
/
npm
/
lib
/
utils
// XXX this can probably be replaced with gentle-fs.mkdir everywhere it's used const chownr = require('chownr') const inflight = require('inflight') const log = require('npmlog') const mkdirp = require('mkdirp') const inferOwner = require('infer-owner') // retain ownership of the parent dir // this matches behavior in cacache to infer the cache ownership // based on the ownership of the cache folder or it is parent. module.exports = function correctMkdir (path, cb) { cb = inflight('correctMkdir: ' + path, cb) if (!cb) { return log.verbose('correctMkdir', path, 'correctMkdir already in flight; waiting') } else { log.verbose('correctMkdir', path, 'correctMkdir not in flight; initializing') } if (!process.getuid) { log.verbose('makeCacheDir', 'UID & GID are irrelevant on', process.platform) return mkdirp(path, (er, made) => cb(er, { uid: 0, gid: 0 })) } inferOwner(path).then(owner => { mkdirp(path, (er, made) => { if (er) { log.error('correctMkdir', 'failed to make directory %s', path) return cb(er) } chownr(made || path, owner.uid, owner.gid, (er) => cb(er, owner)) }) }, er => { log.error('correctMkdir', 'failed to infer path ownership %s', path) return cb(er) }) }
[-] umask.js
[edit]
[-] read-local-package.js
[edit]
[-] completion.sh
[edit]
[-] otplease.js
[edit]
[-] save-stack.js
[edit]
[-] escape-arg.js
[edit]
[-] temp-filename.js
[edit]
[-] lifecycle.js
[edit]
[-] git.js
[edit]
[-] pulse-till-done.js
[edit]
[-] open-url.js
[edit]
[-] usage.js
[edit]
[+]
..
[-] gently-rm.js
[edit]
[-] correct-mkdir.js
[edit]
[-] error-handler.js
[edit]
[-] read-user-info.js
[edit]
[-] ansi-trim.js
[edit]
[-] is-registry.js
[edit]
[-] output.js
[edit]
[-] pick-manifest-from-registry-metadata.js
[edit]
[-] package-id.js
[edit]
[-] metrics-launch.js
[edit]
[-] unix-format-path.js
[edit]
[-] depr-check.js
[edit]
[-] no-progress-while-running.js
[edit]
[-] warn-deprecated.js
[edit]
[-] link.js
[edit]
[-] move.js
[edit]
[-] is-windows.js
[edit]
[-] spawn.js
[edit]
[-] child-path.js
[edit]
[-] unsupported.js
[edit]
[-] metrics.js
[edit]
[-] cache-file.js
[edit]
[-] is-windows-shell.js
[edit]
[-] funding.js
[edit]
[+]
completion
[-] did-you-mean.js
[edit]
[-] lifecycle-cmd.js
[edit]
[-] gunzip-maybe.js
[edit]
[-] error-message.js
[edit]
[-] locker.js
[edit]
[-] parse-json.js
[edit]
[-] perf.js
[edit]
[-] escape-exec-path.js
[edit]
[-] module-name.js
[edit]
[-] is-windows-bash.js
[edit]
[-] deep-sort-object.js
[edit]