소스 검색

Ensures proper split

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

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

@ -130,7 +130,7 @@ export function splitPath(
path = normalizePath(path);
repoPath = normalizePath(repoPath);
const index = commonBaseIndex(`${repoPath}/`, path, '/', ignoreCase);
const index = commonBaseIndex(`${repoPath}/`, `${path}/`, '/', ignoreCase);
if (index > 0) {
repoPath = path.substring(0, index);
path = path.substring(index + 1);

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