Skip to content
Closed
Prev Previous commit
Next Next commit
Merge branch 'main' into fix-cwd-error-message
  • Loading branch information
Ankush1oo8 authored Feb 23, 2025
commit 8ccefc5b0d3e3d11f89a72b90d7b3dfc550e5f21
2 changes: 1 addition & 1 deletion src/node_process_methods.cc
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ static void Cwd(const FunctionCallbackInfo<Value>& args) {
THROW_ERR_CWD_DELETED(env);
return;
}
Comment thread
Ankush1oo8 marked this conversation as resolved.
if (err)
if (err) {
return env->ThrowUVException(err, "uv_cwd");
}

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.