From 811a78e629421625c43dde59700cdc0704080718 Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Mon, 20 Jan 2025 13:28:07 +0100 Subject: [PATCH] Update workflow --- .github/workflows/check.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 427b5107..9e3dee06 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -63,7 +63,8 @@ jobs: echo "| -- | -- |" >> $GITHUB_STEP_SUMMARY for tex in $(ls *.tex content/*.tex 2>/dev/null); do # One could add a personal dictionary using --personal=.aspell.en.pws - words=$(aspell --mode=tex -l en_US --encoding=utf-8 --conf=./.aspell.conf -p ./.aspell.en.pws list < $tex | sort | uniq | tr '\n' ' ') + # Words are output in the order they appear in the document + words=$(aspell --mode=tex -l en_US --encoding=utf-8 --conf=./.aspell.conf -p ./.aspell.en.pws list < $tex | tr '\n' ' ') if [ -z "$words" ]; then echo "| $tex | ✅ |" >> $GITHUB_STEP_SUMMARY else