~kris/dots

sdeploy

ref: 808006579a54261425553e4f3642cda318dbe7a8 sdeploy/compile-all-pdfs.sh -rwxr-xr-x 259 bytes
80800657 — Kris Yotam wip: emergency backup (power outage risk) 3 months 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."