0
1
Fork 0

Do not delete cwd (#86)

This commit is contained in:
eric sciple 2019-12-03 13:43:37 -05:00 committed by GitHub
parent cc70598ce8
commit 689bf84be4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 12 additions and 4 deletions

8
dist/index.js vendored
View File

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

View File

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