#42 fixed wrong dictionary name

This commit is contained in:
Dominik Becker 2020-05-24 15:48:59 +02:00
parent f0d1398aa3
commit e49f9c24ea
2 changed files with 4 additions and 4 deletions

View File

@ -21,7 +21,7 @@ hunspell_chapters:
image: fastexitlane/hunspell:latest image: fastexitlane/hunspell:latest
stage: test stage: test
script: 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 - echo $HUNSPELL_FINDINGS
- test "$HUNSPELL_FINDINGS" == "" - test "$HUNSPELL_FINDINGS" == ""
allow_failure: true allow_failure: true
@ -31,7 +31,7 @@ hunspell_appendix:
image: fastexitlane/hunspell:latest image: fastexitlane/hunspell:latest
stage: test stage: test
script: 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 - echo $HUNSPELL_FINDINGS
- test "$HUNSPELL_FINDINGS" == "" - test "$HUNSPELL_FINDINGS" == ""
allow_failure: true allow_failure: true

View File

@ -19,7 +19,7 @@ hunspell_chapters:
image: fastexitlane/hunspell:latest image: fastexitlane/hunspell:latest
stage: test stage: test
script: 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 - echo $HUNSPELL_FINDINGS
- test "$HUNSPELL_FINDINGS" == "" - test "$HUNSPELL_FINDINGS" == ""
allow_failure: true allow_failure: true
@ -29,7 +29,7 @@ hunspell_appendix:
image: fastexitlane/hunspell:latest image: fastexitlane/hunspell:latest
stage: test stage: test
script: 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 - echo $HUNSPELL_FINDINGS
- test "$HUNSPELL_FINDINGS" == "" - test "$HUNSPELL_FINDINGS" == ""
allow_failure: true allow_failure: true