浏览代码

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()