Sfoglia il codice sorgente

removing silent option

Vallie Joseph 2 anni fa
parent
commit
2c24b08d98
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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()