Unverified Commit d603ee11 authored by Jenn Magder's avatar Jenn Magder Committed by GitHub

Add verbose build flag to ios_app_with_extensions_test (#74080)

parent 99daddc2
...@@ -39,7 +39,7 @@ Future<void> main() async { ...@@ -39,7 +39,7 @@ Future<void> main() async {
await inDirectory(projectDir, () async { await inDirectory(projectDir, () async {
await flutter( await flutter(
'build', 'build',
options: <String>['ios', '--no-codesign', '--release'], options: <String>['ios', '--no-codesign', '--release', '--verbose'],
); );
}); });
...@@ -93,7 +93,7 @@ Future<void> main() async { ...@@ -93,7 +93,7 @@ Future<void> main() async {
await inDirectory(projectDir, () async { await inDirectory(projectDir, () async {
await flutter( await flutter(
'build', 'build',
options: <String>['ios', '--debug', '--no-codesign'], options: <String>['ios', '--debug', '--no-codesign', '--verbose'],
); );
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment