Updated Branches: refs/heads/master c97c4cbe1 -> d9ee339d3
[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/master Commit: d9ee339d34b8934fa4f657eeaf5fca40ea4f9aa0 Parents: c97c4cb Author: Braden Shepherdson <[email protected]> Authored: Wed Sep 4 11:03:06 2013 -0400 Committer: Braden Shepherdson <[email protected]> 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) {
