~kris/dots

sdeploy

ref: 782c7eac7273674d6e2b0d7f85d72c1db56b90f1 sdeploy/compile-all-pdfs.sh -rwxr-xr-x 259 bytes
782c7eac — Kris Yotam chore: sync local state after restore (push updates, no pull) a month ago
                                                                                
1
2
3
4
5
6
7
8
9
#!/bin/bash
# Compile all manual.tex files across sd variants
for dir in standard/sd-*/ system/sd-*/; do
    if [ -f "$dir/manual.tex" ]; then
        echo "Compiling $dir/manual.tex..."
        (cd "$dir" && latexmk -pdf manual.tex)
    fi
done
echo "Done."