mirror of
https://github.com/electron/node-gyp.git
synced 2025-09-15 13:43:40 +02:00
Use path.resolve() everywhere.
This commit is contained in:
parent
a32385a413
commit
80f857a470
5 changed files with 10 additions and 10 deletions
|
@ -13,7 +13,7 @@ var fs = require('fs')
|
|||
function list (gyp, args, callback) {
|
||||
|
||||
// TODO: Make ~/.node-gyp configurable
|
||||
var nodeGypDir = path.join(process.env.HOME, '.node-gyp')
|
||||
var nodeGypDir = path.resolve(process.env.HOME, '.node-gyp')
|
||||
|
||||
gyp.verbose('using node-gyp dir', nodeGypDir)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue