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 1030646 commit 752b571Copy full SHA for 752b571
src/node_process_methods.cc
@@ -168,10 +168,9 @@ 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 =
172
- err_msg +
173
- ", the current working directory was likely removed " +
174
- "without changing the working directory";
+ err_msg = err_msg +
+ ", the current working directory was likely removed " +
+ "without changing the working directory";
175
}
176
return env->ThrowUVException(err, "uv_cwd", err_msg.c_str());
177
0 commit comments