In watch script, exclude built files from watch
This commit is contained in:
parent
3a038d8f95
commit
5632250644
1 changed files with 1 additions and 1 deletions
|
@ -10,5 +10,5 @@ nproc=$(nproc || echo 4)
|
||||||
|
|
||||||
while true
|
while true
|
||||||
do
|
do
|
||||||
find . -name '*.rs' -o -name '*.md' -o -name '*.css' | entr -d make -j$nproc
|
find . -name '*.rs' -o -name '*.md' -o -name '*.css' -not -path './site/*' | entr -d make -j$nproc
|
||||||
done
|
done
|
||||||
|
|
Loading…
Add table
Reference in a new issue