From 6ca597218698549468e40d67bf545dc3a7aa6141 Mon Sep 17 00:00:00 2001 From: Justin Espedal Date: Fri, 26 Mar 2021 08:03:41 +0900 Subject: [PATCH] Fix iOS -Info.plist merging feature for paths with spaces --- tools/platforms/IOSPlatform.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/platforms/IOSPlatform.hx b/tools/platforms/IOSPlatform.hx index 4820ca6f1..592be63ec 100644 --- a/tools/platforms/IOSPlatform.hx +++ b/tools/platforms/IOSPlatform.hx @@ -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" ]); }