From d2e9d8b595dda75742c2a742ff92f7f4bce64db9 Mon Sep 17 00:00:00 2001
From: Vallie Joseph <vmjoseph@github.com>
Date: Thu, 1 Dec 2022 15:42:14 +0000
Subject: [PATCH] .

---
 dist/index.js | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/dist/index.js b/dist/index.js
index f8fc0c4..4945647 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -7697,6 +7697,7 @@ class GitCommandManager {
             const listenersD = Object.assign(Object.assign({}, customListeners), defaultListener);
             const stdout = [];
             let temp = '';
+            let temp2 = '';
             const options = {
                 cwd: this.workingDirectory,
                 env,
@@ -7708,11 +7709,18 @@ class GitCommandManager {
                         temp += chunk.toString();
                         next();
                     }
+                }),
+                outStream: new stream_1.default.Writable({
+                    write(chunk, _, next) {
+                        temp2 += chunk.toString();
+                        next();
+                    }
                 })
             };
             result.exitCode = yield exec.exec(`"${this.gitPath}"`, args, options);
             result.stdout = stdout.join('');
             core.info(temp.length.toString());
+            core.info(temp2.length.toString());
             return result;
         });
     }