diff options
author | Axel Dürkop <axel.duerkop@tuhh.de> | 2020-11-10 11:44:52 +0100 |
---|---|---|
committer | Axel Dürkop <axel.duerkop@tuhh.de> | 2020-11-10 11:44:52 +0100 |
commit | 59e948e3291e672cc24f6d47a2baddc51bf60b82 (patch) | |
tree | 13ea36d5a4deba6b5857bfc00441c219c81c36e3 | |
parent | 4162dc29e9eb364d8eab41814b7eb62798331469 (diff) |
Fix slash
-rw-r--r-- | .gitlab-ci.yml | 3 | ||||
-rwxr-xr-x | build.sh | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 992ecf3..0d3a8a1 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,10 +1,9 @@ image: pandoc/latex:2.10.1 - build: script: - pandoc --version - - xargs -a ./content/toc.txt pandoc --filter pandoc-citeproc -o build/book.pdf .config/.pandoc-config.yml + - xargs -a ./content/toc.txt pandoc ./config/.pandoc-config.yml --filter pandoc-citeproc -o build/book.pdf artifacts: paths: - "*.pdf" @@ -1,4 +1,4 @@ #! /bin/bash -xargs -a ./content/toc.txt pandoc --filter pandoc-citeproc -o build/book.pdf ./config/.pandoc-config.yml +xargs -a ./content/toc.txt pandoc ./config/.pandoc-config.yml --filter pandoc-citeproc -o build/book.pdf |