浏览代码

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 '';
}

正在加载...
取消
保存