Adds watch for mac os

This commit is contained in:
Rodrigo de Oliveira 2021-03-22 00:12:18 -03:00
parent 5d9ff5967d
commit 22f7bd801f
1 changed files with 11 additions and 6 deletions

View File

@ -1,11 +1,16 @@
#!/bin/sh
## Run the build script whenever there is a change in src folder
echo 'Watching changes on src/'
current_OS=`uname`
while inotifywait -qqr src -e create,move,modify,delete; do
echo
echo 'Change detected, running build'
./build.sh
done
# For macOS (Darwin), you can install fsevents-tools via Homebrew: `brew install fsevents-tools`
if [ $current_OS == "Darwin" ]; then
notifyloop src ./build.sh
else
while inotifywait -qqr src -e create,move,modify,delete; do
echo
echo 'Change detected, running build'
./build.sh
done
fi