Skip to content

Commit

Permalink
Merge branch 'master' into TIMOB-27752
Browse files Browse the repository at this point in the history
  • Loading branch information
ssekhri committed Feb 10, 2020
2 parents 2078add + 58be7ac commit 7a6f1b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion iphone/cli/commands/_build.js
Original file line number Diff line number Diff line change
Expand Up @@ -4679,7 +4679,8 @@ iOSBuilder.prototype.copyExtensionFiles = function copyExtensionFiles(next) {
beforeCopy: function (srcFile, destFile, srcStat) {
this.unmarkBuildDirFile(destFile);

if (path.basename(srcFile) === 'Info.plist') {
// Only check source Info.plist files, not compiled framework Info.plist files
if (path.basename(srcFile) === 'Info.plist' && !srcFile.includes('.framework')) {
// validate the info.plist
const infoPlist = new appc.plist(srcFile);
if (infoPlist.WKWatchKitApp) {
Expand Down

0 comments on commit 7a6f1b3

Please sign in to comment.