eric sciple 5 роки тому
батько
коміт
bf32513e49
2 змінених файлів з 6 додано та 0 видалено
  1. 3 0
      dist/index.js
  2. 3 0
      src/github-api-helper.ts

+ 3 - 0
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;

+ 3 - 0
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)
 }