From 922e12e3a384aca520d40f8e4d24184985390c3d Mon Sep 17 00:00:00 2001
From: Vallie Joseph <vmjoseph@github.com>
Date: Tue, 6 Dec 2022 16:29:07 +0000
Subject: [PATCH] adding temp path info

---
 dist/index.js          | 1 +
 src/git-auth-helper.ts | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/dist/index.js b/dist/index.js
index 53ba92a..c643039 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -7204,6 +7204,7 @@ class GitAuthHelper {
             if (((_a = this.temporaryHomePath) === null || _a === void 0 ? void 0 : _a.length) > 0) {
                 core.debug(`Unsetting HOME override`);
                 this.git.removeEnvironmentVariable('HOME');
+                core.info(`hi there: $(this.temporaryHomePath)`);
                 yield io
                     .rmRF(this.temporaryHomePath)
                     // eslint-disable-next-line github/no-then
diff --git a/src/git-auth-helper.ts b/src/git-auth-helper.ts
index 3c31e4f..7788322 100644
--- a/src/git-auth-helper.ts
+++ b/src/git-auth-helper.ts
@@ -197,6 +197,8 @@ class GitAuthHelper {
     if (this.temporaryHomePath?.length > 0) {
       core.debug(`Unsetting HOME override`)
       this.git.removeEnvironmentVariable('HOME')
+
+      core.info(`hi there: $(this.temporaryHomePath)`)
       await io
         .rmRF(this.temporaryHomePath)
         // eslint-disable-next-line github/no-then