1
0
Fork 0
mirror of https://github.com/actions/checkout.git synced 2025-05-03 15:20:03 +00:00

Fix typos found by codespell

This commit is contained in:
Dimitri Papadopoulos 2023-04-13 06:20:57 +02:00
parent 83b7061638
commit 1a0090fad3
No known key found for this signature in database
GPG key ID: 95998121D9D25F5D
3 changed files with 4 additions and 4 deletions

2
dist/index.js vendored
View file

@ -1027,7 +1027,7 @@ function prepareExistingDirectory(git, repositoryPath, repositoryUrl, clean, ref
if (clean) {
core.startGroup('Cleaning the repository');
if (!(yield git.tryClean())) {
core.debug(`The clean command failed. This might be caused by: 1) path too long, 2) permission issue, or 3) file in use. For futher investigation, manually run 'git clean -ffdx' on the directory '${repositoryPath}'.`);
core.debug(`The clean command failed. This might be caused by: 1) path too long, 2) permission issue, or 3) file in use. For further investigation, manually run 'git clean -ffdx' on the directory '${repositoryPath}'.`);
remove = true;
}
else if (!(yield git.tryReset())) {