Maximilian Keßler
72cc9d78b0
All checks were successful
Build LaTeX packages / build (push) Successful in 1m50s
8 lines
205 B
Bash
Executable file
8 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" -- {} \;
|