From 7ea46694711ecf55c537e921b071ef5d54889992 Mon Sep 17 00:00:00 2001 From: Holt Skinner <13262395+holtskinner@users.noreply.github.com> Date: Mon, 29 Jul 2024 17:48:53 +0200 Subject: [PATCH] Update run_linter.sh (#3349) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fix spelling error `notebooked` → `notebooks` --- .github/workflows/linter/run_linter.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/linter/run_linter.sh b/.github/workflows/linter/run_linter.sh index d17eac119..241f4fac3 100755 --- a/.github/workflows/linter/run_linter.sh +++ b/.github/workflows/linter/run_linter.sh @@ -58,7 +58,7 @@ done # Only check notebooks in test folders modified in this pull request. # Note: Use process substitution to persist the data in the array if [ ${#notebooks[@]} -eq 0 ]; then - echo "Checking for changed notebooked using git" + echo "Checking for changed notebooks using git" while read -r file || [ -n "$line" ]; do notebooks+=("$file") done < <(git diff --name-only main... | grep '\.ipynb$')