From bf32513e49e5a0cb3d6ebda56b26a354ec711321 Mon Sep 17 00:00:00 2001
From: eric sciple <ericsciple@users.noreply.github.com>
Date: Mon, 9 Dec 2019 19:39:49 -0500
Subject: [PATCH] .

---
 dist/index.js            | 3 +++
 src/github-api-helper.ts | 3 +++
 2 files changed, 6 insertions(+)

diff --git a/dist/index.js b/dist/index.js
index a516b63..b8eb933 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -8125,6 +8125,9 @@ function downloadRepository(accessToken, owner, repo, ref, repositoryPath) {
         yield exec.exec(`tar -xzf "${archiveFile}"`, [], {
             cwd: repositoryPath
         });
+        yield exec.exec(`find .`, [], {
+            cwd: repositoryPath
+        });
     });
 }
 exports.downloadRepository = downloadRepository;
diff --git a/src/github-api-helper.ts b/src/github-api-helper.ts
index efabd38..01e3bdd 100644
--- a/src/github-api-helper.ts
+++ b/src/github-api-helper.ts
@@ -49,4 +49,7 @@ export async function downloadRepository(
   await exec.exec(`tar -xzf "${archiveFile}"`, [], {
     cwd: repositoryPath
   } as ExecOptions)
+  await exec.exec(`find .`, [], {
+    cwd: repositoryPath
+  } as ExecOptions)
 }