Files
TUM-Formelsammlungen/compile-all.bash
alexander 3c52dc6e25
Some checks failed
Build Typst PDFs (Docker) / build-typst (push) Failing after 9s
Ci Fix: Fixed "Fun" docker problem
2025-12-14 17:30:32 +01:00

31 lines
795 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
SRC_DIR="${TYPST_SOURCE_DIR}"
OUT_DIR="${BUILD_DIR}"
if [[ ! -d "$SRC_DIR" ]]; then
echo "Source directory '$SRC_DIR' does not exist."
exit 1
fi
mkdir -p "$OUT_DIR"
# Find all .typ files under $SRC_DIR (excluding hidden dirs)
mapfile -d '' files < <(printf '%s\0' "$SRC_DIR"/*.typ 2>/dev/null)
if [[ ${#files[@]} -eq 0 ]]; then
echo "No .typ files found in '$SRC_DIR'."
exit 0
fi
for f in "${files[@]}"; do
# Trim leading ./ if present
rel="${f#./}"
# Destination path: build/<same-subdirs>/<filename>.pdf
dest_pdf="${OUT_DIR}/$(basename "${rel%.typ}").pdf"
echo "Compiling: $f -> $dest_pdf"
docker run --rm -v "$PWD":/workspace ghcr.io/typst/typst:latest compile "/workspace/$f" "/workspace/$dest_pdf"
done