We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Calling pty.startProcess() with a cwd that has non-ASCII characters (eg. Hebrew) raises the following error: Unable to start terminal process. Win32 error code: 267. The error code suggests an invalid directory name.
pty.startProcess()
cwd
Unable to start terminal process. Win32 error code: 267
// cwd = E:\ Cannot find module '..\build\Release\pty.node' // cwd = E:\מסמכים\תוכנות\Eclipse\Coursework Cannot find module '..\build\Release\pty.node' Unable to start terminal process. Win32 error code: 267 Error: Unable to start terminal process. Win32 error code: 267 at Error (native) at Server.<anonymous> (C:\Users\morags\.atom\packages\platformio-ide-terminal\node_modules\pty.js\lib\pty_win.js:68:9) at emitOne (events.js:77:13) at Server.emit (events.js:169:7) at Pipe.onconnection (net.js:1430:8)
The text was updated successfully, but these errors were encountered:
Fixes microsoft#173: Convert strings passed from node using UTF-8, no…
fbf5758
…t the system code page
Fixes #173: Convert strings passed from node using UTF-8, not the sys…
36b5b6f
…tem code page
This is fixed in my fork node-pty thanks to @the-ress.
node-pty
Sorry, something went wrong.
No branches or pull requests
Calling
pty.startProcess()
with acwd
that has non-ASCII characters (eg. Hebrew) raises the following error:Unable to start terminal process. Win32 error code: 267
. The error code suggests an invalid directory name.The text was updated successfully, but these errors were encountered: