DescriptionFix usage of shlex in unit tests on windows.
When shlex was getting an arg like:
r'"some\interesting\path.file" other_file'
shlex was turning it into:
['someinterestingpath.file', 'other_file']
Which _happened_ to work, putting 'someinterestingpath.file' in the working
directory.
This patch doubles up all backslashes prior to splitting, to make the incoming
string conform to shlex's expectations
R=scottmg
Committed: https://code.google.com/p/gyp/source/detail?r=1465
Patch Set 1 #
Total comments: 1
Patch Set 2 : #
Messages
Total messages: 8 (0 generated)
|