0
1
Fork 0

updating error handling

This commit is contained in:
Vallie Joseph 2022-12-06 04:09:47 +00:00
parent 24ec60a7c8
commit ed4a43bf5c
2 changed files with 2 additions and 2 deletions

2
dist/index.js vendored
View File

@ -7209,7 +7209,7 @@ class GitAuthHelper {
// eslint-disable-next-line github/no-then
.catch(err => {
// eslint-disable-next-line i18n-text/no-en
core.warning(`Failed to remove temporary home directory: ${err}`);
core.warning(`Failed to remove temporary checkout directory: ${err}`);
});
}
});

View File

@ -202,7 +202,7 @@ class GitAuthHelper {
// eslint-disable-next-line github/no-then
.catch(err => {
// eslint-disable-next-line i18n-text/no-en
core.warning(`Failed to remove temporary home directory: ${err}`)
core.warning(`Failed to remove temporary checkout directory: ${err}`)
})
}
}