Skip to content

Commit 34363e5

Browse files
Added --vebose and --debug to sh commands
1 parent 219f66a commit 34363e5

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
@@ -169,7 +169,7 @@ class Xcrun {
169169

170170
static Future<ProcessResult> _runInShell(List<String> commandAndArgs) async {
171171
print("Sending shell command: '${commandAndArgs.join(" ")}'");
172-
final result = await Process.run("sh", ["-c", ...commandAndArgs]);
172+
final result = await Process.run("sh", ["--verbose", "--debug", "-c", ...commandAndArgs]);
173173
print("Shell command exit code: ${result.exitCode}");
174174
return result;
175175

0 commit comments

Comments
 (0)