From d603ee11004f0379d2b51fede1ba34f572ac83da Mon Sep 17 00:00:00 2001 From: Jenn Magder Date: Fri, 15 Jan 2021 15:31:03 -0800 Subject: [PATCH] Add verbose build flag to ios_app_with_extensions_test (#74080) --- dev/devicelab/bin/tasks/ios_app_with_extensions_test.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/devicelab/bin/tasks/ios_app_with_extensions_test.dart b/dev/devicelab/bin/tasks/ios_app_with_extensions_test.dart index cccd75ce77..df2eb4f926 100644 --- a/dev/devicelab/bin/tasks/ios_app_with_extensions_test.dart +++ b/dev/devicelab/bin/tasks/ios_app_with_extensions_test.dart @@ -39,7 +39,7 @@ Future main() async { await inDirectory(projectDir, () async { await flutter( 'build', - options: ['ios', '--no-codesign', '--release'], + options: ['ios', '--no-codesign', '--release', '--verbose'], ); }); @@ -93,7 +93,7 @@ Future main() async { await inDirectory(projectDir, () async { await flutter( 'build', - options: ['ios', '--debug', '--no-codesign'], + options: ['ios', '--debug', '--no-codesign', '--verbose'], ); });