latex-packages/scripts/compile_doc.sh
Maximilian Keßler 72cc9d78b0
All checks were successful
Build LaTeX packages / build (push) Successful in 1m50s
set -e for compilation script
2023-10-19 02:49:26 +02:00

9 lines
205 B
Bash
Executable File

#! /bin/bash
# Compiles all documentation files in repository
set -e
BUILD_COMMAND="latexmk -output-directory=$(pwd)/.compile $1"
find doc -type f -name "*.tex" -execdir sh -c "$BUILD_COMMAND" -- {} \;