Skip to content

Commit

Permalink
simply forget to update the file names in the binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreG-P authored and physikerwelt committed Dec 9, 2020
1 parent b8f1bfe commit 1b8828a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions bin/all
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ source bin/acm
source bin/llncs

echo "Export release files"
cp preprint.pdf rel
cp preprint.log rel
cp llncs_preprint.pdf rel
cp llncs_preprint.log rel
cp llncs-arxiv.tar.gz rel
cp acm_preprint.pdf rel
cp acm_preprint.log rel
cp acm-arxiv.tar.gz rel
cp main.docx rel
cp spellcheck.html rel
Expand Down
2 changes: 1 addition & 1 deletion bin/spellcheck
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ echo "Generating the spellcheck file"
# textidote returns the number of errors which might be interpreted as exit code. Logically an exit code different to 0 returns to an error.
# see here: https://github.com/sylvainhalle/textidote/issues/112#issuecomment-561621053
# hence it is adviced to ignore the exit code from textidote with || true in the end. Otherwise CI platforms, like Github Actions, may run into problems
docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` aggipp/textidote --check en --dict config/myWords.txt --output html preprint.tex > spellcheck.html || true
docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` aggipp/textidote --check en --dict config/myWords.txt --output html llncs_preprint.tex > spellcheck.html || true
2 changes: 1 addition & 1 deletion bin/word
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
echo "Generating the word file"
docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` pandoc/latex:2.9 -f latex -t docx preprint.tex -o main.docx
docker run --rm --volume "`pwd`:/data" --user `id -u`:`id -g` pandoc/latex:2.9 -f latex -t docx llncs_preprint.tex -o main.docx

0 comments on commit 1b8828a

Please sign in to comment.