[d15511]: / docs / create_hippunfold_manual_pdf.sh

Download this file

13 lines (9 with data), 228 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#!/bin/bash
set -euox pipefail
git restore ../README.md
tmpfile=`mktemp`
cp ../README.md $tmpfile
tail -n +5 $tmpfile > ../README.md
make latexpdf
cp _build/latex/hippunfold.pdf hippunfold_manual.pdf
git restore ../README.md