소스 검색

Fixes #1932 invalid comparison & only on windows

main
Eric Amodio 2 년 전
부모
커밋
b0c39edbd4
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/system/path.ts

+ 1
- 1
src/system/path.ts 파일 보기

@ -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);
}
}

불러오는 중...
취소
저장