From 03e7cd63bd595bb2d1ac096fb37d7e928537356d Mon Sep 17 00:00:00 2001 From: ZauberNerd Date: Fri, 8 Feb 2013 13:48:59 +0100 Subject: [PATCH] Ignore .git* files in autobuild.sh --- autobuild.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autobuild.sh b/autobuild.sh index 119e3148..df151d1a 100755 --- a/autobuild.sh +++ b/autobuild.sh @@ -2,7 +2,7 @@ ./build.rb FORMAT=$(echo "\033[1;33m%w%f\033[0m written") -while inotifywait -qre close_write --exclude "total-conversion-build.user.js" --format "$FORMAT" . +while inotifywait -qre close_write --exclude "total-conversion-build.user.js|.git*" --format "$FORMAT" . do ./build.rb done