Explorar el Código

removing silent option

Vallie Joseph hace 2 años
padre
commit
2c24b08d98
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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()