소스 검색

Stops throwing for a common error case

main
Eric Amodio 7 년 전
부모
커밋
8f2ec85c6b
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      src/git/git.ts

+ 1
- 1
src/git/git.ts 파일 보기

@ -27,7 +27,7 @@ async function gitCommand(cwd: string, ...args: any[]) {
}
catch (ex) {
const msg = ex && ex.toString();
if (msg && (msg.includes('Not a git repository') || msg.includes('is outside repository') || msg.includes('no such path'))) {
if (msg && (msg.includes('Not a git repository') || msg.includes('is outside repository') || msg.includes('no such path') || msg.includes('does not have any commits'))) {
Logger.warn('git', ...args, ` cwd='${cwd}'`, msg && `\n ${msg.replace(/\r?\n|\r/g, ' ')}`);
return '';
}

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