10 lines
202 B
Bash
Executable File
10 lines
202 B
Bash
Executable File
#!/bin/sh
|
|
|
|
./build.py $*
|
|
FORMAT=$(echo "\033[1;33m%w%f\033[0m written")
|
|
while inotifywait -qre close_write --format "$FORMAT" . @./build/ @./mobile/bin/ @./mobile/gen/ @./.git/
|
|
do
|
|
./build.py $*
|
|
done
|
|
|