You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by st...@apache.org on 2013/09/12 20:14:52 UTC

[24/40] git commit: [CB-4502] Ignore www/config.xml, projects in ^[xyz].* now work

[CB-4502] Ignore www/config.xml, projects in ^[xyz].* now work


Project: http://git-wip-us.apache.org/repos/asf/cordova-plugman/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-plugman/commit/d9ee339d
Tree: http://git-wip-us.apache.org/repos/asf/cordova-plugman/tree/d9ee339d
Diff: http://git-wip-us.apache.org/repos/asf/cordova-plugman/diff/d9ee339d

Branch: refs/heads/ffos
Commit: d9ee339d34b8934fa4f657eeaf5fca40ea4f9aa0
Parents: c97c4cb
Author: Braden Shepherdson <br...@gmail.com>
Authored: Wed Sep 4 11:03:06 2013 -0400
Committer: Braden Shepherdson <br...@gmail.com>
Committed: Wed Sep 4 11:04:07 2013 -0400

----------------------------------------------------------------------
 src/platforms/ios.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/d9ee339d/src/platforms/ios.js
----------------------------------------------------------------------
diff --git a/src/platforms/ios.js b/src/platforms/ios.js
index 278746f..bb5c597 100644
--- a/src/platforms/ios.js
+++ b/src/platforms/ios.js
@@ -134,7 +134,7 @@ module.exports = {
                            );
 
         config_files = config_files.filter(function (val) {
-            return !(/^build\//.test(val));
+            return !(/^build\//.test(val)) && !(/\/www\/config.xml$/.test(val));
         });
 
         if (config_files.length === 0) {