her.esy.fun/engine/dev.sh
Yann Esposito (Yogsototh) 5ae19b34eb
cleanup style
2020-08-08 11:19:34 +02:00

9 lines
246 B
Bash
Executable file

#!/usr/bin/env zsh
cd "$(git rev-parse --show-toplevel)" || exit 1
echo "Watching $PWD/src"
# fswatch --exclude='\\.#' src | while read event; do
fswatch --exclude='^.*\.#.*$' src | while read event; do
echo "$event"
./build.sh fast
done