瀏覽代碼

Adds logging for git location

main
Eric Amodio 8 年之前
父節點
當前提交
e31a1a3473
共有 1 個檔案被更改,包括 1 行新增0 行删除
  1. +1
    -0
      src/git/git.ts

+ 1
- 0
src/git/git.ts 查看文件

@ -56,6 +56,7 @@ export default class Git {
static async repoPath(cwd: string, gitPath?: string) {
git = await findGitPath(gitPath);
Logger.log(`Git found: ${git.version} @ ${git.path === 'git' ? 'PATH' : git.path}`);
let data = await gitCommand(cwd, 'rev-parse', '--show-toplevel');
data = data.replace(/\r?\n|\r/g, '').replace(/\\/g, '/');

Loading…
取消
儲存