1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-04-04 23:40:06 +02:00

Do not delete cwd

This commit is contained in:
eric sciple 2019-12-03 13:15:48 -05:00
parent cc70598ce8
commit 1da0d665ed
2 changed files with 10 additions and 4 deletions

7
dist/index.js vendored
View file

@ -4978,8 +4978,11 @@ function getSource(settings) {
// Try prepare existing directory, otherwise recreate // Try prepare existing directory, otherwise recreate
if (isExisting && if (isExisting &&
!(yield tryPrepareExistingDirectory(git, settings.repositoryPath, repositoryUrl, settings.clean))) { !(yield tryPrepareExistingDirectory(git, settings.repositoryPath, repositoryUrl, settings.clean))) {
yield io.rmRF(settings.repositoryPath); // Delete the contents of the directory. Don't delete the directory itself
yield io.mkdirP(settings.repositoryPath); // since it may be the current working directory.
for (const file of yield fs.promises.readdir(settings.repositoryPath)) {
yield io.rmRF(settings.repositoryPath);
}
} }
// Initialize the repository // Initialize the repository
if (!fsHelper.directoryExistsSync(path.join(settings.repositoryPath, '.git'))) { if (!fsHelper.directoryExistsSync(path.join(settings.repositoryPath, '.git'))) {

View file

@ -59,8 +59,11 @@ export async function getSource(settings: ISourceSettings): Promise<void> {
settings.clean settings.clean
)) ))
) { ) {
await io.rmRF(settings.repositoryPath) // Delete the contents of the directory. Don't delete the directory itself
await io.mkdirP(settings.repositoryPath) // since it may be the current working directory.
for (const file of await fs.promises.readdir(settings.repositoryPath)) {
await io.rmRF(settings.repositoryPath)
}
} }
// Initialize the repository // Initialize the repository