From 41027463c9b29d9a26b40f66d9259a4979218541 Mon Sep 17 00:00:00 2001 From: Noel Cower Date: Mon, 17 Nov 2014 08:38:44 -0800 Subject: [PATCH] Descend into included directories to check for file inclusion. Only applies to directories that are marked as unignored, since the travis script has the odd problem of not descending into those directories and, as a result, not recording the files in them. I'm assuming the failure to descend into included directories is unintended. --- tools/travis-scripts/generate-template-files.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/travis-scripts/generate-template-files.py b/tools/travis-scripts/generate-template-files.py index 6da3e33378..f629d71f68 100755 --- a/tools/travis-scripts/generate-template-files.py +++ b/tools/travis-scripts/generate-template-files.py @@ -97,6 +97,7 @@ class CocosFileList: self.fileList_lua.append("%s/" %relativePath) else: self.fileList_com.append("%s/" %relativePath) + self.__parseFileList(path) continue if ( self.__bExclude("/%s" %relativePath) or