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:
parent
cc70598ce8
commit
1da0d665ed
2 changed files with 10 additions and 4 deletions
7
dist/index.js
vendored
7
dist/index.js
vendored
|
@ -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'))) {
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue