@@ -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;
@@ -49,4 +49,7 @@ export async function downloadRepository(
await exec.exec(`tar -xzf "${archiveFile}"`, [], {
} as ExecOptions)
+ await exec.exec(`find .`, [], {
+ } as ExecOptions)