diff --git a/lib/services/ios-project-service.ts b/lib/services/ios-project-service.ts index e8ceddbbfe..6de0956eee 100644 --- a/lib/services/ios-project-service.ts +++ b/lib/services/ios-project-service.ts @@ -641,9 +641,11 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f let session = new PlistSession({ log: (txt: string) => this.$logger.trace("Info.plist: " + txt) }); let makePatch = (plistPath: string) => { if (!this.$fs.exists(plistPath).wait()) { + this.$logger.trace("No plist found at: " + plistPath); return; } + this.$logger.trace("Schedule merge plist at: " + plistPath); session.patch({ name: path.relative(projectDir, plistPath), read: () => this.$fs.readFile(plistPath).wait().toString()