mirror of
https://code.forgejo.org/actions/checkout.git
synced 2024-11-06 02:32:52 +01:00
.
This commit is contained in:
parent
8ade6aebfa
commit
54a7542872
2 changed files with 4 additions and 2 deletions
3
dist/index.js
vendored
3
dist/index.js
vendored
|
@ -8137,7 +8137,8 @@ function downloadRepository(accessToken, owner, repo, ref, repositoryPath) {
|
|||
const extraDirectoryName = archiveFileNames[0];
|
||||
core.info(`Resolved ${extraDirectoryName}`); // contains the short SHA
|
||||
const tempRepositoryPath = path.join(extractPath, extraDirectoryName);
|
||||
for (const fileName of tempRepositoryPath) {
|
||||
// Move the files
|
||||
for (const fileName of (yield fs.promises.readdir(tempRepositoryPath))) {
|
||||
const sourcePath = path.join(tempRepositoryPath, fileName);
|
||||
const targetPath = path.join(repositoryPath, fileName);
|
||||
yield io.mv(sourcePath, targetPath);
|
||||
|
|
|
@ -65,7 +65,8 @@ export async function downloadRepository(
|
|||
core.info(`Resolved ${extraDirectoryName}`) // contains the short SHA
|
||||
const tempRepositoryPath = path.join(extractPath, extraDirectoryName)
|
||||
|
||||
for (const fileName of tempRepositoryPath) {
|
||||
// Move the files
|
||||
for (const fileName of await fs.promises.readdir(tempRepositoryPath)) {
|
||||
const sourcePath = path.join(tempRepositoryPath, fileName)
|
||||
const targetPath = path.join(repositoryPath, fileName)
|
||||
await io.mv(sourcePath, targetPath)
|
||||
|
|
Loading…
Reference in a new issue