fixed linux path conversion.

pull/4/head
kay.one 11 years ago
parent 05370518c5
commit fc9937bb7d

@ -12,6 +12,7 @@ namespace NzbDrone.Test.Common
if (path.Length > 2 && path[1] == ':')
{
path = path.Replace(':', Path.DirectorySeparatorChar);
path = Path.DirectorySeparatorChar + path;
}
path = path.Replace("\\", Path.DirectorySeparatorChar.ToString());
}

Loading…
Cancel
Save