From dfaf9d305ede0228b23df4a6763ee779432b6eb9 Mon Sep 17 00:00:00 2001
From: Nicola Corti <corti.nico@gmail.com>
Date: Mon, 1 Jun 2020 00:16:14 +0200
Subject: [PATCH] Fixing typo in error debug message for failed `clean`

---
 dist/index.js               | 2 +-
 src/git-directory-helper.ts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dist/index.js b/dist/index.js
index 0c78d25..4b57db2 100644
--- a/dist/index.js
+++ b/dist/index.js
@@ -7601,7 +7601,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())) {
diff --git a/src/git-directory-helper.ts b/src/git-directory-helper.ts
index e792190..8296607 100644
--- a/src/git-directory-helper.ts
+++ b/src/git-directory-helper.ts
@@ -84,7 +84,7 @@ export async function prepareExistingDirectory(
         core.startGroup('Cleaning the repository')
         if (!(await 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}'.`
+            `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 (!(await git.tryReset())) {