From 727433d46b95e455dd4ea1815440851e40018108 Mon Sep 17 00:00:00 2001 From: Dominik Becker Date: Sun, 24 May 2020 15:14:44 +0200 Subject: [PATCH] #42 changed docker image for spell checking --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 09616cb..d723f60 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,7 +28,7 @@ latexmk: # - mv main.pdf main@$ci_commit_sha_short.pdf hunspell_chapters: - image: tmaier/hunspell:latest + image: fastexitlane/hunspell:latest stage: test script: - export HUNSPELL_FINDINGS=`for filename in chapter/*.tex; do hunspell -l -d de_DE_neu,en_US -p ./.hunspellignore -t $filename; done | sort | uniq` @@ -38,7 +38,7 @@ hunspell_chapters: hunspell_appendix: - image: tmaier/hunspell:latest + image: fastexitlane/hunspell:latest stage: test script: - export HUNSPELL_FINDINGS=`for filename in appendix/*.tex; do hunspell -l -d de_DE_neu,en_US -p ./.hunspellignore -t $filename; done | sort | uniq`