From ed82988ca17c8c1e7cb44ff4da3a7d61dd402d20 Mon Sep 17 00:00:00 2001 From: Kaur Kuut Date: Sun, 19 Nov 2017 18:09:07 +0200 Subject: [PATCH] Removed Windows path lower-case conversion. --- parser/parser_windows.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/parser/parser_windows.go b/parser/parser_windows.go index 90d3a78..c777f43 100644 --- a/parser/parser_windows.go +++ b/parser/parser_windows.go @@ -9,8 +9,7 @@ import ( ) func normalizePath(path string) string { - // use lower case, as Windows file systems will almost always be case insensitive - return strings.ToLower(strings.Replace(path, "\\", "/", -1)) + return strings.Replace(path, "\\", "/", -1) } func getPkgPath(fname string, isDir bool) (string, error) {