Only modify the correct plist file

This commit is contained in:
Joshua Skelton 2016-02-04 16:54:13 -08:00
Родитель b406ba7112
Коммит fcdb2c4ca2
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -17,7 +17,8 @@ module.exports = function(projectRoot, platform) {
var self = this;
this.Remove = function() {
var configFolder = path.join(projectRoot, 'platforms', platform, multiPlatforms.getConfigFolder(platform));
glob.sync('**/*Info.plist', {
// We only want to modify a single plist file, not all of them.
glob.sync('*/*Info.plist', {
cwd: configFolder,
ignore: '*build/**'
}).forEach(function(filename) {