From e49f9c24ead53e1d22499353d5396508b958887d Mon Sep 17 00:00:00 2001 From: Dominik Becker Date: Sun, 24 May 2020 15:48:59 +0200 Subject: [PATCH] #42 fixed wrong dictionary name --- .gitlab-ci.yml | 4 ++-- latex.gitlab-ci.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6d337a5..68de987 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,7 @@ hunspell_chapters: image: fastexitlane/hunspell:latest stage: test script: - - export HUNSPELL_FINDINGS=`for filename in chapter/*.md; do hunspell -l -d de_DE_neu_frami,en_US -p ./.hunspellignore $filename; done | sort | uniq` + - export HUNSPELL_FINDINGS=`for filename in chapter/*.md; do hunspell -l -d de_DE_frami,en_US -p ./.hunspellignore $filename; done | sort | uniq` - echo $HUNSPELL_FINDINGS - test "$HUNSPELL_FINDINGS" == "" allow_failure: true @@ -31,7 +31,7 @@ hunspell_appendix: image: fastexitlane/hunspell:latest stage: test script: - - export HUNSPELL_FINDINGS=`for filename in appendix/*.tex; do hunspell -l -d de_DE_neu_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq` + - export HUNSPELL_FINDINGS=`for filename in appendix/*.tex; do hunspell -l -d de_DE_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq` - echo $HUNSPELL_FINDINGS - test "$HUNSPELL_FINDINGS" == "" allow_failure: true diff --git a/latex.gitlab-ci.yml b/latex.gitlab-ci.yml index 8b55b00..72ed292 100644 --- a/latex.gitlab-ci.yml +++ b/latex.gitlab-ci.yml @@ -19,7 +19,7 @@ hunspell_chapters: image: fastexitlane/hunspell:latest stage: test script: - - export HUNSPELL_FINDINGS=`for filename in chapter/*.tex; do hunspell -l -d de_DE_neu_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq` + - export HUNSPELL_FINDINGS=`for filename in chapter/*.tex; do hunspell -l -d de_DE_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq` - echo $HUNSPELL_FINDINGS - test "$HUNSPELL_FINDINGS" == "" allow_failure: true @@ -29,7 +29,7 @@ hunspell_appendix: image: fastexitlane/hunspell:latest stage: test script: - - export HUNSPELL_FINDINGS=`for filename in appendix/*.tex; do hunspell -l -d de_DE_neu_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq` + - export HUNSPELL_FINDINGS=`for filename in appendix/*.tex; do hunspell -l -d de_DE_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq` - echo $HUNSPELL_FINDINGS - test "$HUNSPELL_FINDINGS" == "" allow_failure: true