소스 검색

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) {

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