diff options
| author | Holden Rohrer <hr@hrhr.dev> | 2020-01-11 19:30:12 -0500 |
|---|---|---|
| committer | Holden Rohrer <hr@hrhr.dev> | 2020-01-11 19:30:26 -0500 |
| commit | b373ab756e40ff0deef1e30955967fc1cc7ef8bc (patch) | |
| tree | ae9e98404b6fdbc72fc81ffea37db212aead583e /make | |
| parent | 7b57e227a17f516e33784934df43d769ca5da84f (diff) | |
updated make with stronger protections
Diffstat (limited to 'make')
| -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 .. |
