@@ -13,7 +13,7 @@ function ownProp (obj, field) {
13
13
var fs = require ( "fs" )
14
14
var path = require ( "path" )
15
15
var minimatch = require ( "minimatch" )
16
- var isAbsolute = require ( "path-is-absolute" )
16
+ var isAbsolute = require ( "path" ) . isAbsolute
17
17
var Minimatch = minimatch . Minimatch
18
18
19
19
function alphasort ( a , b ) {
@@ -88,24 +88,26 @@ function setopts (self, pattern, options) {
88
88
self . changedCwd = false
89
89
var cwd = process . cwd ( )
90
90
if ( ! ownProp ( options , "cwd" ) )
91
- self . cwd = cwd
91
+ self . cwd = path . resolve ( cwd )
92
92
else {
93
93
self . cwd = path . resolve ( options . cwd )
94
94
self . changedCwd = self . cwd !== cwd
95
95
}
96
96
97
97
self . root = options . root || path . resolve ( self . cwd , "/" )
98
98
self . root = path . resolve ( self . root )
99
- if ( process . platform === "win32" )
100
- self . root = self . root . replace ( / \\ / g, "/" )
101
99
102
100
// TODO: is an absolute `cwd` supposed to be resolved against `root`?
103
101
// e.g. { cwd: '/test', root: __dirname } === path.join(__dirname, '/test')
104
102
self . cwdAbs = isAbsolute ( self . cwd ) ? self . cwd : makeAbs ( self , self . cwd )
105
- if ( process . platform === "win32" )
106
- self . cwdAbs = self . cwdAbs . replace ( / \\ / g, "/" )
107
103
self . nomount = ! ! options . nomount
108
104
105
+ if ( process . platform === "win32" ) {
106
+ self . root = self . root . replace ( / \\ / g, "/" )
107
+ self . cwd = self . cwd . replace ( / \\ / g, "/" )
108
+ self . cwdAbs = self . cwdAbs . replace ( / \\ / g, "/" )
109
+ }
110
+
109
111
// disable comments and negation in Minimatch.
110
112
// Note that they are not supported in Glob itself anyway.
111
113
options . nonegate = true
0 commit comments