1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Fixed relPath check

This commit is contained in:
Brian Fiete 2022-01-20 19:13:15 -05:00
parent 1e63e68e3d
commit 0dbe75cf65

View file

@ -467,7 +467,7 @@ namespace System.IO
}
if ((relPath.Length > 1) &&
(relPath[0] == '/') || (relPath[0] == '\\'))
((relPath[0] == '/') || (relPath[0] == '\\')))
{
outAbsPath.Append(relPath);
return;