Add verbose build flag to ios_app_with_extensions_test (#74080)

This commit is contained in:
Jenn Magder 2021-01-15 15:31:03 -08:00 committed by GitHub
parent 99daddc2c0
commit d603ee1100
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -39,7 +39,7 @@ Future<void> main() async {
await inDirectory(projectDir, () async {
await flutter(
'build',
options: <String>['ios', '--no-codesign', '--release'],
options: <String>['ios', '--no-codesign', '--release', '--verbose'],
);
});
@ -93,7 +93,7 @@ Future<void> main() async {
await inDirectory(projectDir, () async {
await flutter(
'build',
options: <String>['ios', '--debug', '--no-codesign'],
options: <String>['ios', '--debug', '--no-codesign', '--verbose'],
);
});