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

Hopefully for real this time
This commit is contained in:
Eric Amodio
2016-09-14 13:31:57 -04:00
parent 7fa0b9d01b
commit 0ee09d9d87

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