summaryrefslogtreecommitdiff
path: root/watch.sh
diff options
context:
space:
mode:
authorMatthieu Pignolet <matthieu@puffer.fish>2025-05-11 19:45:25 +0400
committerMatthieu Pignolet <matthieu@puffer.fish>2025-05-11 19:45:25 +0400
commitb56db32779a1b63e21fd610c97715f10acd3654a (patch)
treead5f493cf441739f5b51d09562c1428e45ff4074 /watch.sh
parentbc89c7f15cac40852d5e906f30c2036cd47585e9 (diff)
feat: add options to the makefile and update the watch script to use them
Diffstat (limited to 'watch.sh')
-rwxr-xr-xwatch.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/watch.sh b/watch.sh
index c591037..d5a09f1 100755
--- a/watch.sh
+++ b/watch.sh
@@ -12,6 +12,6 @@ inotifywait -r -m -e modify . |
then
name="${file_name%%.*}"
# We call the make target in order to build it
- make "$name.pdf"
+ make "$name.pdf" TEXFLAGS=--halt-on-error
fi
done