We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14d9012 commit 2f6b9bcCopy full SHA for 2f6b9bc
packages/flutter_test_runners/lib/src/platform_comms/ios/xcrun.dart
@@ -25,13 +25,13 @@ class Xcrun {
25
// ]);
26
27
print("Trying command through shell - no grep...");
28
- final result = await _runInShell([
+ var result = await _runInShell([
29
"xcrun simctl spawn booted launchctl list",
30
]);
31
print("Done with command without grep");
32
33
print("Trying command through shell with '| grep'...");
34
+ result = await _runInShell([
35
"xcrun simctl spawn booted launchctl list | grep \"$appBundleId\"",
36
37
final output = result.stdout;
0 commit comments