We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d29bc36 + 93ffe5e commit 4e02f60Copy full SHA for 4e02f60
lib/services/ios-project-service.ts
@@ -641,9 +641,11 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
641
let session = new PlistSession({ log: (txt: string) => this.$logger.trace("Info.plist: " + txt) });
642
let makePatch = (plistPath: string) => {
643
if (!this.$fs.exists(plistPath).wait()) {
644
+ this.$logger.trace("No plist found at: " + plistPath);
645
return;
646
}
647
648
+ this.$logger.trace("Schedule merge plist at: " + plistPath);
649
session.patch({
650
name: path.relative(projectDir, plistPath),
651
read: () => this.$fs.readFile(plistPath).wait().toString()
0 commit comments