We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24218bf commit 95968dfCopy full SHA for 95968df
src/node_process_methods.cc
@@ -165,7 +165,7 @@ static void Cwd(const FunctionCallbackInfo<Value>& args) {
165
if (err) {
166
std::string err_msg =
167
std::string("process.cwd failed with error ") + uv_strerror(err);
168
- if (err == UV_ENOENT) {
+ if (err == UV_ENOENT) {
169
// If err == UV_ENOENT it is necessary to notice the user
170
// that the current working dir was likely removed.
171
err_msg = err_msg +
0 commit comments