Switch from entr to inotifywait
This commit is contained in:
parent
4d79307fe1
commit
f1eb82cf0b
2
Makefile
2
Makefile
|
@ -8,7 +8,7 @@ clean:
|
|||
test -e out && rm -rf out
|
||||
|
||||
watch:
|
||||
while sleep 1; do find src/ build.py Makefile | entr -d make build; done
|
||||
while inotifywait -r -e modify -e move -e create -e delete build.py Makefile src/; do make build; done
|
||||
|
||||
serve:
|
||||
python -m http.server --directory out/
|
||||
|
|
Loading…
Reference in New Issue