File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1794,17 +1794,17 @@ class _UnzipListEntry {
17941794 final String path;
17951795}
17961796
1797- /// Wait for up to 400 seconds for the file to appear.
1797+ /// Wait for up to 1 hour for the file to appear.
17981798Future <File > waitForFile (String path) async {
1799- for (int i = 0 ; i < 20 ; i += 1 ) {
1799+ for (int i = 0 ; i < 180 ; i += 1 ) {
18001800 final File file = File (path);
18011801 print ('looking for ${file .path }' );
18021802 if (file.existsSync ()) {
18031803 return file;
18041804 }
18051805 await Future <void >.delayed (const Duration (seconds: 20 ));
18061806 }
1807- throw StateError ('Did not find vmservice out file after 400 seconds ' );
1807+ throw StateError ('Did not find vmservice out file after 1 hour ' );
18081808}
18091809
18101810String ? _findIosAppInBuildDirectory (String searchDirectory) {
You can’t perform that action at this time.
0 commit comments