~kris/dots

sdeploy

ref: 386c768e2bd8d75f33924c299283b759e6481e2e sdeploy/compile-all-pdfs.sh -rwxr-xr-x 259 bytes
386c768e — Kris Yotam restructure: standard/system split, rename ksd- to sd-, add wired pentesting config 4 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."