diff --git a/src/DotnetCleanup/PathUtility.cs b/src/DotnetCleanup/PathUtility.cs index 596278f..3cbd64b 100644 --- a/src/DotnetCleanup/PathUtility.cs +++ b/src/DotnetCleanup/PathUtility.cs @@ -10,8 +10,7 @@ internal static class PathUtility public static string GetCleanPath(string path) { return path?.Replace('\\', SeparatorChar) - .Replace('/', SeparatorChar) - .TrimStart(SeparatorChar); + .Replace('/', SeparatorChar); } } -} \ No newline at end of file +}