From ad704a3523bea9cc09540835c2126416cfe36e39 Mon Sep 17 00:00:00 2001 From: nod_ Date: Wed, 20 Mar 2024 04:54:58 +0100 Subject: [PATCH] Issue #3432249 by longwave, alexpott: cspell check is broken in commit-code-check.sh --- core/scripts/dev/commit-code-check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/scripts/dev/commit-code-check.sh b/core/scripts/dev/commit-code-check.sh index bc6522f8d41..5d7f4907a9e 100755 --- a/core/scripts/dev/commit-code-check.sh +++ b/core/scripts/dev/commit-code-check.sh @@ -216,7 +216,7 @@ else # Check all files for spelling in one go for better performance. We pipe the # list files in so we obey the globs set on the spellcheck:core command in # core/package.json. - echo "${ABS_FILES}" | tr ' ' '\n' | yarn run spellcheck:core --no-must-find-files --root --file-list $TOP_LEVEL $ABS_FILES >/dev/null stdin + echo "${ABS_FILES}" | tr ' ' '\n' | yarn run spellcheck:core --no-must-find-files --file-list stdin fi if [ "$?" -ne "0" ]; then