File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
scripts/emulator-testing/emulators Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -75,15 +75,17 @@ export abstract class Emulator {
75
75
const reader = resp . body . getReader ( ) ;
76
76
reader . read ( ) . then ( function readChunk ( { done, value } ) : any {
77
77
if ( done ) {
78
- console . log ( 'Emulator download is done.' )
78
+ console . log ( 'Emulator download is done.' ) ;
79
79
writer . close ( err => {
80
80
if ( err ) {
81
- downloadFailed ( `Failed to close the downloaded emulator file: ${ err } ` ) ;
81
+ downloadFailed (
82
+ `Failed to close the downloaded emulator file: ${ err } `
83
+ ) ;
82
84
}
83
85
84
- console . log ( 'Closed downloaded emulator file.' )
86
+ console . log ( 'Closed downloaded emulator file.' ) ;
85
87
downloadComplete ( ) ;
86
- } )
88
+ } ) ;
87
89
} else {
88
90
writer . write ( value ) ;
89
91
return reader . read ( ) . then ( readChunk ) ;
You can’t perform that action at this time.
0 commit comments