From 1ddb9c08ef70a203c92ece9419c34272adee5cb9 Mon Sep 17 00:00:00 2001 From: fkloft Date: Thu, 22 Jan 2015 17:58:29 +0100 Subject: [PATCH] update autobuild.sh the ignore rule was broken because it's a RegExp, not a globbing pattern --- autobuild.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/autobuild.sh b/autobuild.sh index 66cdbe85..55e605fc 100755 --- a/autobuild.sh +++ b/autobuild.sh @@ -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 +