Lines Matching refs:realpath
19 log.silly('finalize', pkg.realpath)
23 …const delpath = path.join(path.dirname(pkg.realpath), '.' + path.basename(pkg.realpath) + '.DELETE…
28 const relative = path.relative(path.dirname(pkg.path), pkg.realpath)
35 return makeParentPath(pkg.realpath)
40 return rimraf(pkg.realpath).then(moveOldDestinationBack).then(() => {
61 return lstat(pkg.realpath).then(() => {
67 return move(extractedTo, pkg.realpath, moveOpts)
72 return move(pkg.realpath, delpath, moveOpts)
77 return move(delpath, pkg.realpath, moveOpts).then(() => { movedDestAway = false })
84 …return mkdirp(path.join(pkg.realpath, 'node_modules')).then(() => Bluebird.map(modules, (file) => {
86 const to = path.join(pkg.realpath, 'node_modules', file)