Browse Source

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

Hopefully for real this time
main
Eric Amodio 8 years ago
parent
commit
0ee09d9d87
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/git.ts

+ 1
- 1
src/git.ts View File

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

Loading…
Cancel
Save