Fix iOS -Info.plist merging feature for paths with spaces

This commit is contained in:
Justin Espedal
2021-03-26 08:03:41 +09:00
parent 5345430d0f
commit 6ca5972186

View File

@@ -692,7 +692,7 @@ class IOSPlatform extends PlatformTarget
System.runCommand(project.workingDirectory, "/usr/libexec/PlistBuddy", [
"-x",
"-c",
"Merge " + plist,
"Merge '" + plist + "'",
projectDirectory + "/" + project.app.file + "-Info.plist"
]);
}