Github user ogoguel commented on a diff in the pull request:

    https://github.com/apache/cordova-lib/pull/219#discussion_r31824683
  
    --- Diff: cordova-lib/src/plugman/platforms/ios.js ---
    @@ -184,13 +192,65 @@ module.exports = {
     
     
             var xcBuildConfiguration = 
xcodeproj.pbxXCBuildConfigurationSection();
    -        var plist_file_entry = _.find(xcBuildConfiguration, function 
(entry) { return entry.buildSettings && entry.buildSettings.INFOPLIST_FILE; });
    -        var plist_file = path.join(project_dir, 
plist_file_entry.buildSettings.INFOPLIST_FILE.replace(/^"(.*)"$/g, 
'$1').replace(/\\&/g, '&'));
    -        var config_file = path.join(path.dirname(plist_file), 
'config.xml');
     
    -        if (!fs.existsSync(plist_file) || !fs.existsSync(config_file)) {
    +        // CB-9033
    +        var plist_file_index;
    +        var plist_file_entry = _.find(xcBuildConfiguration, function 
(entry,index) { 
    +            if (entry.buildSettings && entry.buildSettings.INFOPLIST_FILE 
&& entry.buildSettings.SKIP_INSTALL != 'YES') { 
    --- End diff --
    
    ok, I will change it, even though I don't believe it would make a 
difference... unless there are cases I've missed.
    if it is part of the cordova-lib coding requirements, it would be good to 
update the jslint rules accordingly so it is catched during the test phase  


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org
For additional commands, e-mail: dev-h...@cordova.apache.org

Reply via email to