From b373ab756e40ff0deef1e30955967fc1cc7ef8bc Mon Sep 17 00:00:00 2001
From: Holden Rohrer
Date: Sat, 11 Jan 2020 19:30:12 -0500
Subject: updated make with stronger protections
---
make | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
(limited to 'make')
diff --git a/make b/make
index ef3ae65..61517a5 100755
--- a/make
+++ b/make
@@ -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 ..
--
cgit