Skip to content

Commit

Permalink
test: add missing cctest/test_path.cc
Browse files Browse the repository at this point in the history
  • Loading branch information
anonrig committed Mar 19, 2024
1 parent a21b15a commit d7dd131
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions node.gyp
Expand Up @@ -398,6 +398,7 @@
'test/cctest/test_environment.cc',
'test/cctest/test_linked_binding.cc',
'test/cctest/test_node_api.cc',
'test/cctest/test_path.cc',
'test/cctest/test_per_process.cc',
'test/cctest/test_platform.cc',
'test/cctest/test_report.cc',
Expand Down
2 changes: 1 addition & 1 deletion src/path.cc
Expand Up @@ -101,7 +101,7 @@ std::string PathResolve(Environment* env,
const size_t numArgs = paths.size();
auto cwd = env->GetCwd(env->exec_path());

for (int i = numArgs - 1; i >= -1 && !resolvedAbsolute; i--) {
for (int i = numArgs - 1; i >= -1; i--) {
std::string path;
if (i >= 0) {
path = std::string(paths[i]);
Expand Down

0 comments on commit d7dd131

Please sign in to comment.