Skip to content

Commit 58a6fef

Browse files
Working on iOS GitHub CI
1 parent 25e6cc2 commit 58a6fef

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/flutter_test_runners/example_deep_links/test_driver/deep_link_ios_test.dart

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ void main() {
3030
environment: {
3131
'FLUTTER_TEST': 'false',
3232
},
33+
runInShell: true,
34+
mode: ProcessStartMode.detachedWithStdio,
3335
);
3436
process.stdout.transform(utf8.decoder).listen((data) {
3537
print("STDOUT:\n$data");
@@ -40,7 +42,7 @@ void main() {
4042
print("The process started...");
4143
print("Closing stdin");
4244
process.stdin.close();
43-
print("Waiting for exist code...");
45+
print("Waiting for exit code...");
4446
final exitCode = await process.exitCode;
4547
print("The xcrun call returned with exit code: $exitCode");
4648
});

0 commit comments

Comments
 (0)