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 23e60ca commit 9680c26Copy full SHA for 9680c26
src/Utils/Utilities.cs
@@ -438,7 +438,7 @@ public static string HashSHA256(byte[] raw)
438
/// <summary>Smart clean combination of two paths in a way that allows B to be an absolute path.</summary>
439
public static string CombinePathWithAbsolute(string a, string b)
440
{
441
- if (b.StartsWith("/") || (b.Length > 2 && b[1] == ':'))
+ if (b.StartsWith("/") || (b.Length > 2 && b[1] == ':') || b.StartsWith("\\\\"))
442
443
return b;
444
}
0 commit comments