diff --git a/dist/index.js b/dist/index.js
index 911443c..0e1b3fb 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -7399,7 +7399,7 @@ class GitCommandManager {
             else {
                 args.push('--branches');
             }
-            const output = yield this.execGit(args, false, true);
+            const output = yield this.execGit(args);
             for (let branch of output.stdout.trim().split('\n')) {
                 branch = branch.trim();
                 if (branch) {
@@ -7672,7 +7672,7 @@ class GitCommandManager {
             for (const key of Object.keys(this.gitEnv)) {
                 env[key] = this.gitEnv[key];
             }
-            const stdout = [];
+            const stdout = ['ardvark'];
             const options = {
                 cwd: this.workingDirectory,
                 env,
@@ -7681,6 +7681,9 @@ class GitCommandManager {
                 listeners: {
                     stdout: (data) => {
                         stdout.push(data.toString());
+                    },
+                    stderr: (data) => {
+                        stdout.push(data.toString());
                     }
                 }
             };