Skip to content

Commit

Permalink
Escape whitespace in package path. Fixes cksource#74
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeckermann committed Apr 24, 2018
1 parent 7c2a2ee commit 4f6da13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/getoptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ module.exports = function cwdResolver( callOptions, cwd ) {

options = Object.assign( options, callOptions );

options.packages = path.resolve( cwd, options.packages );
options.packages = path.resolve( cwd, options.packages ).replace(/ /g, '\\ ');

return options;
};
Expand Down

0 comments on commit 4f6da13

Please sign in to comment.