1
0
Fork 0

Switch from entr to inotifywait

This commit is contained in:
Tim Van Baak 2023-09-19 20:32:45 -07:00
parent 4d79307fe1
commit f1eb82cf0b
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ clean:
test -e out && rm -rf out test -e out && rm -rf out
watch: 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: serve:
python -m http.server --directory out/ python -m http.server --directory out/

View File

@ -28,7 +28,7 @@
default = pkgs.mkShell { default = pkgs.mkShell {
packages = [ packages = [
pyenv pyenv
pkgs.entr pkgs.inotify-tools
pkgs.rsync pkgs.rsync
pkgs.pagefind pkgs.pagefind
]; ];