Przeglądaj źródła

Fixes #57 - no more blank message w/o a diff.tool

main
Eric Amodio 7 lat temu
rodzic
commit
6a3428e6d2
1 zmienionych plików z 7 dodań i 2 usunięć
  1. +7
    -2
      src/git/git.ts

+ 7
- 2
src/git/git.ts Wyświetl plik

@ -150,8 +150,13 @@ export class Git {
return gitCommand(repoPath, ...params);
}
static config_get(key: string, repoPath?: string) {
return gitCommand(repoPath || '', `config`, `--get`, key);
static async config_get(key: string, repoPath?: string) {
try {
return await gitCommand(repoPath || '', `config`, `--get`, key);
}
catch (ex) {
return '';
}
}
static diff_nameStatus(repoPath: string, sha1?: string, sha2?: string) {

Ładowanie…
Anuluj
Zapisz