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 95968df commit 06cc697Copy full SHA for 06cc697
src/node_process_methods.cc
@@ -168,7 +168,8 @@ static void Cwd(const FunctionCallbackInfo<Value>& args) {
168
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 +
+ err_msg =
172
+ err_msg +
173
std::string(", the current working directory was likely removed ") +
174
std::string("without changing the working directory");
175
}
0 commit comments