Removed Windows path lower-case conversion.

This commit is contained in:
Kaur Kuut
2017-11-19 18:09:07 +02:00
parent 61a3095943
commit ed82988ca1
+1 -2
View File
@@ -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) {