Ver a proveniência

Ensures proper split

main
Eric Amodio há 2 anos
ascendente
cometimento
cfcccb1a0a
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      src/system/path.ts

+ 1
- 1
src/system/path.ts Ver ficheiro

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

Carregando…
Cancelar
Guardar