Adds watch for mac os
This commit is contained in:
parent
5d9ff5967d
commit
22f7bd801f
|
@ -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`
|
||||
|
||||
# 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
|
Loading…
Reference in New Issue