blob: c9475ba7ae3ad4e2134aabea6d5a83aba06e76e2 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
mkdir imgs 2>/dev/null
cd imgs
python3 ../data.py images || echo "You must install python3"
cd ..
cd document
pdftex report.tex || echo "You must install \`pdftex\` (MacTeX, TeXLive, MikTeX, etc)"
cd ..
|