Skip to content

Commit

Permalink
added network driver path condition
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-ext-simba-jy committed Mar 22, 2024
1 parent 066e25a commit cf235ad
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ && systemGetProperty("os.name").toLowerCase().startsWith("windows")) {
updatedPath = updatedPath.substring(1);
} else if (updatedPath.startsWith("file:\\")) {
updatedPath = updatedPath.substring(6);
} else if (updatedPath.startsWith("\\")) {
updatedPath = updatedPath.substring(2);
}
updatedPath = updatedPath.replace("/", "\\");
}
Expand Down

0 comments on commit cf235ad

Please sign in to comment.