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