-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
child_process.fork method & unicode characters #19888
Comments
I am unable to reproduce this error. $ pwd
/Users/trott/io.js/⺠
$ cat test.js
var path = require('path');
// '__dirname' contains unicode characters
var jsFile = path.resolve(__dirname, 'worker.js');
var fork = require("child_process").fork;
var child = fork(jsFile, [], {});
$ cat worker.js
// empty file (other than this comment)
$ node -v
v9.11.1
$ node test.js
$ node test.js && echo success
success
$ Can you provide more information on how to reproduce this bug? |
yha.. you're right. |
This was referenced Jun 3, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The child_process.fork method does not work if the file path contains unicode characters (korean, chiness, japanese...).
what do you think about?
The text was updated successfully, but these errors were encountered: