Commit 1852fdcc authored by Chinmay Garde's avatar Chinmay Garde Committed by GitHub

Fix escaping of spaces when passing launch arguments to the iOS device. (#5574)

`Process.start` seems to be escaping as needed.
parent f6c53d58
...@@ -231,7 +231,7 @@ class IOSDevice extends Device { ...@@ -231,7 +231,7 @@ class IOSDevice extends Device {
if (launchArguments.length > 0) { if (launchArguments.length > 0) {
launchCommand.add('--args'); launchCommand.add('--args');
launchCommand.add('"${launchArguments.join(" ")}"'); launchCommand.add('${launchArguments.join(" ")}');
} }
int installationResult = -1; int installationResult = -1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment