Skip to content

Commit

Permalink
Update src/path.cc
Browse files Browse the repository at this point in the history
Co-authored-by: Ruben Bridgewater <[email protected]>
  • Loading branch information
huseyinacacak-janea and BridgeAR authored Sep 9, 2024
1 parent 350d03b commit 34839d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/path.cc
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ std::string PathResolve(Environment* env,
while (j < len && !IsPathSeparator(path[j])) {
j++;
}
if ((j == len || j != last)) {
if (j == len || j != last) {
if (firstPart != "." && firstPart != "?") {
// We matched a UNC root
device =
Expand Down

0 comments on commit 34839d8

Please sign in to comment.