Skip to content

Commit

Permalink
fix(vscode): vscode에서 view로 git config 정보를 보내는 부분 중 누락된 것 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
seungineer committed Aug 5, 2024
1 parent d758307 commit f9306fd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/vscode/src/webview-loader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ export default class WebviewLoader implements vscode.Disposable {
const gitLog = await getGitLog(this.gitPath, this.getCurrentWorkspacePath());
const gitConfig = await getGitConfig(this.gitPath, this.getCurrentWorkspacePath(), "origin");
const { owner, repo } = getRepo(gitConfig);
this.setGlobalOwnerAndRepo(owner, repo);
const engine = new AnalysisEngine({
isDebugMode: true,
gitLog,
Expand Down

0 comments on commit f9306fd

Please sign in to comment.