aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAxel Dürkop <axel.duerkop@tuhh.de>2020-11-10 11:44:52 +0100
committerAxel Dürkop <axel.duerkop@tuhh.de>2020-11-10 11:44:52 +0100
commit59e948e3291e672cc24f6d47a2baddc51bf60b82 (patch)
tree13ea36d5a4deba6b5857bfc00441c219c81c36e3
parent4162dc29e9eb364d8eab41814b7eb62798331469 (diff)
Fix slash
-rw-r--r--.gitlab-ci.yml3
-rwxr-xr-xbuild.sh2
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"
diff --git a/build.sh b/build.sh
index 4aae3fd..f661809 100755
--- a/build.sh
+++ b/build.sh
@@ -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