File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ async function retryUntil(
130
130
} , timeoutMs ) ;
131
131
} ) ;
132
132
const retry = ( async ( ) => {
133
- for ( ; ; ) {
133
+ for ( ; ; ) {
134
134
if ( await fn ( ) ) {
135
135
break ;
136
136
}
@@ -210,7 +210,6 @@ async function runStdioDiscovery(modulePath: string): Promise<DiscoveryResult> {
210
210
211
211
proc . on ( "close" , ( ) => {
212
212
clearTimeout ( timeoutId ) ;
213
- // Try to parse manifest
214
213
const manifestMatch = stderr . match ( / _ _ F I R E B A S E _ F U N C T I O N S _ M A N I F E S T _ _ : ( [ \s \S ] + ) / ) ;
215
214
if ( manifestMatch ) {
216
215
const base64 = manifestMatch [ 1 ] ;
@@ -220,7 +219,6 @@ async function runStdioDiscovery(modulePath: string): Promise<DiscoveryResult> {
220
219
return ;
221
220
}
222
221
223
- // Try to parse error
224
222
const errorMatch = stderr . match ( / _ _ F I R E B A S E _ F U N C T I O N S _ M A N I F E S T _ E R R O R _ _ : ( [ \s \S ] + ) / ) ;
225
223
if ( errorMatch ) {
226
224
resolve ( { success : false , error : errorMatch [ 1 ] } ) ;
You can’t perform that action at this time.
0 commit comments