From f2d68cd9fa2d86e53543deb2850ecf3ce68c018a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wies=C5=82aw=20=C5=A0olt=C3=A9s?= Date: Fri, 26 Aug 2016 00:32:23 +0200 Subject: [PATCH] Fix path normalization --- build.cake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.cake b/build.cake index c98384a03d..412f3b087a 100644 --- a/build.cake +++ b/build.cake @@ -144,7 +144,7 @@ var ignoredSubModulesPaths = subModules.Select(m => }).ToList(); var normalizePath = new Func( - path => path.TrimEnd(System.IO.Path.DirectorySeparatorChar, System.IO.Path.AltDirectorySeparatorChar).ToUpperInvariant()); + path => path.Replace(System.IO.Path.DirectorySeparatorChar, System.IO.Path.AltDirectorySeparatorChar).ToUpperInvariant()); // Key: Package Id // Value is Tuple where Item1: Package Version, Item2: The packages.config file path.