1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-07-06 08:12:53 +00:00
This commit is contained in:
Vallie Joseph 2022-12-06 18:57:47 +00:00
parent 34070387ee
commit c22ccee38a
2 changed files with 2 additions and 17 deletions

View file

@ -197,15 +197,7 @@ class GitAuthHelper {
if (this.temporaryHomePath?.length > 0) {
core.debug(`Unsetting HOME override`)
this.git.removeEnvironmentVariable('HOME')
core.info(`hi there: ${this.temporaryHomePath}`)
await io
.rmRF(this.temporaryHomePath)
// eslint-disable-next-line github/no-then
.catch(err => {
// eslint-disable-next-line i18n-text/no-en
core.warning(`Failed to remove temporary checkout directory: ${err}`)
})
await io.rmRF(this.temporaryHomePath)
}
}