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:
parent
1e63e68e3d
commit
0dbe75cf65
1 changed files with 1 additions and 1 deletions
|
@ -467,7 +467,7 @@ namespace System.IO
|
|||
}
|
||||
|
||||
if ((relPath.Length > 1) &&
|
||||
(relPath[0] == '/') || (relPath[0] == '\\'))
|
||||
((relPath[0] == '/') || (relPath[0] == '\\')))
|
||||
{
|
||||
outAbsPath.Append(relPath);
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue