diff options
-rwxr-xr-x | make | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,9 +1,9 @@ #!/bin/sh -mkdir imgs +mkdir imgs 2>/dev/null cd imgs -python3 data.py +python3 ../data.py || echo "You must install python3" cd .. cd document -pdftex report.tex +pdftex report.tex || echo "You must install \`pdftex\` (MacTeX, TeXLive, MikTeX, etc)" cd .. |