-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Freeze + Windows 7 + Node 6.8.0+ = bug #129
Comments
It is reproduced on all I tried the following code (launched not in Windows): "C://Dir1/Dir2".split(path.sep); // [ 'C:', '', 'Dir1', 'Dir2' ]
path.join('C:', '', 'Dir1', 'Dir2'); // 'C:/Dir1/Dir2' It works the same with In nodejs/node#8541 I see that they are talking about the Could you tell me which |
On versions since 6.8. path.join('', 'C:'); // C:.
path.join('C:.', 'Dir1'); // C:Dir1
path.join('C:Dir1', 'Dir2'); // C:Dir1/Dir2 |
any updates? |
Any news? Will it be fixed? |
Anybody home? :) |
New behaviour of Node Path nodejs/node#8541 (comment) сauses ENOENT error.
"C:Dir1/Dir2" passed to mkdirSync here:
https://github.com/borschik/borschik/blob/master/lib/freeze.js#L437
The text was updated successfully, but these errors were encountered: