From 1b3792a1cc436ca9e19376d5f468ffd09febd22f Mon Sep 17 00:00:00 2001 From: Randall Luecke Date: Mon, 25 Apr 2011 17:13:43 -0400 Subject: [PATCH] Exclude build directory in xcodecapp. --- Tools/xcodecapp/XCResourceMonitor.j | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Tools/xcodecapp/XCResourceMonitor.j b/Tools/xcodecapp/XCResourceMonitor.j index d0fb64191..b6241090f 100644 --- a/Tools/xcodecapp/XCResourceMonitor.j +++ b/Tools/xcodecapp/XCResourceMonitor.j @@ -40,6 +40,8 @@ var FILE = require("file"), paths.exclude(FILE.join(FILE.dirname(aPath), "**", "*")); }); + paths.exclude(FILE.join("Build", "**", "*")); + var mtimesForFilePaths = [CPMutableDictionary new]; paths.forEach(function(aPath)