dpogue commented on code in PR #212: URL: https://github.com/apache/cordova-common/pull/212#discussion_r1735912223
########## src/ConfigChanges/ConfigFile.js: ########## @@ -173,14 +200,26 @@ function resolveConfigFilePath (project_dir, platform, file) { absolute: true }).map(path.normalize); - if (matches.length) filepath = matches[0]; + if (matches.length) { + filepath = matches[0]; + } - // [CB-5989] multiple Info.plist files may exist. default to $PROJECT_NAME-Info.plist + // [CB-5989] multiple Info.plist files may exist. default to Info.plist then $PROJECT_NAME-Info.plist if (matches.length > 1 && file.includes('-Info.plist')) { Review Comment: Should be fixed by [49e3f4c](https://github.com/apache/cordova-common/pull/212/commits/49e3f4c9a7aa2e041dca6afa84a5d22dc32df301) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@cordova.apache.org For additional commands, e-mail: issues-h...@cordova.apache.org