Преглед на файлове

Fixes #4 - Absolute paths fail on Windows due to backslash

Hopefully for real this time
main
Eric Amodio преди 8 години
родител
ревизия
0ee09d9d87
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. +1
    -1
      src/git.ts

+ 1
- 1
src/git.ts Целия файл

@ -30,7 +30,7 @@ export default class Git {
}
static repoPath(cwd: string) {
return gitCommand(cwd, 'rev-parse', '--show-toplevel').then(data => data.replace(/\r?\n|\r/g, ''));
return gitCommand(cwd, 'rev-parse', '--show-toplevel').then(data => data.replace(/\r?\n|\r/g, '').replace(/\\/g, '/'));
}
static blame(fileName: string, repoPath: string, sha?: string) {

Зареждане…
Отказ
Запис