Parcourir la source

Ensures proper split

main
Eric Amodio il y a 2 ans
Parent
révision
cfcccb1a0a
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/system/path.ts

+ 1
- 1
src/system/path.ts Voir le fichier

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

Chargement…
Annuler
Enregistrer