update autobuild.sh

the ignore rule was broken because it's a RegExp, not a globbing pattern
This commit is contained in:
fkloft 2015-01-22 17:58:29 +01:00
parent a7b84089df
commit 1ddb9c08ef

View File

@ -2,7 +2,8 @@
./build.py $*
FORMAT=$(echo "\033[1;33m%w%f\033[0m written")
while inotifywait -qre close_write --exclude "iitc-debug.user.js|.git*" --format "$FORMAT" .
while inotifywait -qre close_write --format "$FORMAT" . @./build/ @./mobile/bin/ @./mobile/gen/ @./.git/
do
./build.py $*
done