This commit is contained in:
Andre Weinand
2017-07-12 15:39:00 +02:00
parent 15a41e538f
commit 2b63f468e3

View File

@@ -218,7 +218,7 @@ export default class URI {
ret._scheme = 'file';
// normalize to fwd-slashes on windows,
// on other systems bwd-slaches are valid
// on other systems bwd-slashes are valid
// filename character, eg /f\oo/ba\r.txt
if (platform.isWindows) {
path = path.replace(/\\/g, URI._slash);