Sfoglia il codice sorgente

Fixes #1932 invalid comparison & only on windows

main
Eric Amodio 2 anni fa
parent
commit
b0c39edbd4
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/system/path.ts

+ 1
- 1
src/system/path.ts Vedi File

@ -178,7 +178,7 @@ export function normalizePath(path: string): string {
path = path.replace(pathNormalizeRegex, '/');
if (path.charCodeAt(path.length - 1) === slash) {
// Don't remove the trailing slash on Windows root folders, such as z:\
if (path.length != 3 || (path.length == 3 && path.charCodeAt(1) != ':')) {
if (!isWindows || path.length !== 3 || path[1] !== ':') {
path = path.slice(0, -1);
}
}

Caricamento…
Annulla
Salva