diff --git a/lib/glob.js b/lib/glob.js index 7b11c76..2b13cd7 100644 --- a/lib/glob.js +++ b/lib/glob.js @@ -14,7 +14,7 @@ function glob( globs, options ) { var negatives = []; globs.forEach( function ( glob ) { - var mm = new Minimatch( self.join( '/', glob ), options ); + var mm = new Minimatch( glob, options ); mm.base = mmBase( mm ); if ( mm.negate ) negatives.push( mm );