Capitalize drive letter on Windows when standardizing paths
This commit is contained in:
@@ -724,6 +724,12 @@ class PathHelper {
|
||||
|
||||
}
|
||||
|
||||
if (PlatformHelper.hostPlatform == Platform.WINDOWS && path.charAt (1) == ":") {
|
||||
|
||||
path = path.charAt (0).toUpperCase () + ":" + path.substr (2);
|
||||
|
||||
}
|
||||
|
||||
return path;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user