Add entr script

This commit is contained in:
Camden Dixie O'Brien 2024-11-03 21:12:01 +00:00
parent 02873d3120
commit 65534f34d7

6
entr.sh Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
find . \
-not \( -path './build' -prune \) \
-not \( -path './.git' -prune \) \
-type f \
| entr -cs 'cmake --build build && build/maze-thing'