Skip to content

Commit eb013c0

Browse files
Working on iOS GitHub CI
1 parent 7b8f3bd commit eb013c0

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
@@ -98,7 +98,7 @@ class Xcrun {
9898

9999
/// Kills the app with the given [appBundleId] ID, e.g., `com.acme.myapp`.
100100
static Future<void> killApp(String appBundleId) async {
101-
await Process.run("xcrun", ["simctl", "terminate", "booted", appBundleId]);
101+
await Process.run("sh", ["-c", "xcrun", "simctl", "terminate", "booted", appBundleId]);
102102
}
103103

104104
/// Clears all logs in the iOS log stream.

0 commit comments

Comments
 (0)