mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 04:22:20 +02:00
Fixed relPath check
This commit is contained in:
parent
1e63e68e3d
commit
0dbe75cf65
1 changed files with 1 additions and 1 deletions
|
@ -467,7 +467,7 @@ namespace System.IO
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((relPath.Length > 1) &&
|
if ((relPath.Length > 1) &&
|
||||||
(relPath[0] == '/') || (relPath[0] == '\\'))
|
((relPath[0] == '/') || (relPath[0] == '\\')))
|
||||||
{
|
{
|
||||||
outAbsPath.Append(relPath);
|
outAbsPath.Append(relPath);
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue