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 1c5f28a commit 86ccde0Copy full SHA for 86ccde0
packages/flutter_test_runners/lib/src/platform_comms/ios/xcrun.dart
@@ -190,7 +190,17 @@ class Xcrun {
190
print("Shell command exit code: ${result.exitCode}");
191
192
if (result.exitCode != 0) {
193
- throw Exception("Failed to execute command in a shell:\n'$command'\nExit code: ${result.exitCode}");
+ throw Exception('''
194
+Failed to execute command in a shell:
195
+'$command'
196
+
197
+Exit code: ${result.exitCode}
198
199
+Stdout:
200
+${result.stdout}
201
202
+Stderr:
203
+${result.stderr}''');
204
}
205
206
return result;
0 commit comments