Procházet zdrojové kódy

Fixes pathing issue on Windows

main
Eric Amodio před 7 roky
rodič
revize
305674d71a
1 změnil soubory, kde provedl 10 přidání a 6 odebrání
  1. +10
    -6
      src/git/git.ts

+ 10
- 6
src/git/git.ts Zobrazit soubor

@ -47,13 +47,17 @@ export default class Git {
}
static splitPath(fileName: string, repoPath?: string): [string, string] {
// if (!path.isAbsolute(fileName)) {
// Logger.error(`Git.splitPath(${fileName}) is not an absolute path!`);
// debugger;
// }
if (repoPath) return [fileName.replace(`${repoPath}/`, ''), repoPath];
if (repoPath) {
return [
fileName.replace(repoPath.endsWith('/') ? repoPath : `${repoPath}/`, ''),
repoPath
];
}
return [path.basename(fileName).replace(/\\/g, '/'), path.dirname(fileName).replace(/\\/g, '/')];
return [
path.basename(fileName).replace(/\\/g, '/'),
path.dirname(fileName).replace(/\\/g, '/')
];
}
static async repoPath(cwd: string, gitPath?: string) {

Načítá se…
Zrušit
Uložit