1
0
mirror of git://f0xx.org/ac/ac-scripts synced 2026-07-29 02:59:20 +03:00
This commit is contained in:
Anton Afanasyeu
2026-06-23 12:20:53 +02:00
commit 3c197ed9dd
30 changed files with 3510 additions and 0 deletions

15
build-all-docs-pdf.sh Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
# Render docs/**/*.md to sibling .pdf, then diagram/special PDF builders.
set -euo pipefail
ROOT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
PDF_BUILD="$ROOT_DIR/docs/_pdf_build"
python3 "$PDF_BUILD/build_all_docs_pdf.py"
for extra in \
build_git_flow_pdf.py \
build_graphvis_pivot_pdf.py \
build_egress_review_pdf.py; do
if [[ -f "$PDF_BUILD/$extra" ]]; then
python3 "$PDF_BUILD/$extra" || echo "WARN: $extra failed (optional)" >&2
fi
done
echo "Done: PDFs under $ROOT_DIR/docs/ (recursive + diagram builders)"