소스 검색

removing silent option

Vallie Joseph 2 년 전
부모
커밋
2c24b08d98
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/git-command-manager.ts

+ 1 - 1
src/git-command-manager.ts

@@ -104,7 +104,7 @@ class GitCommandManager {
       args.push('--branches')
     }
 
-    const output = await this.execGit(args, false, true)
+    const output = await this.execGit(args)
 
     for (let branch of output.stdout.trim().split('\n')) {
       branch = branch.trim()