Skip to content

Commit fc988c1

Browse files
Add 'sudo' to deep link launch behavior
1 parent 032dbee commit fc988c1

File tree

1 file changed

+1
-1
lines changed
  • packages/flutter_test_runners/lib/src/platform_comms/ios

1 file changed

+1
-1
lines changed

packages/flutter_test_runners/lib/src/platform_comms/ios/xcrun.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class Xcrun {
108108
// command as a single string. If the command is passed as
109109
// individual arguments, it doesn't work. If the command is
110110
// run without "sh" and `runInShell` is `true`, it won't work.
111-
return _runInShell(["xcrun simctl openurl booted \"$universalLink\""]);
111+
return _runInShell(["sudo xcrun simctl openurl booted \"$universalLink\""]);
112112
// return Process.run(
113113
// "sh",
114114
// ["-c", "xcrun simctl openurl booted \"$universalLink\""],

0 commit comments

Comments
 (0)