File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -295,9 +295,13 @@ async function buildSnapshot(
295295
296296 console . log ( ) ;
297297 console . log (
298- `Installing ${ options . packages . length } package${ options . packages . length === 1 ? "" : "s" } ` +
298+ `Installing ${ options . packages . length } package${
299+ options . packages . length === 1 ? "" : "s"
300+ } ` +
299301 ( options . setupCommands . length > 0
300- ? ` + ${ options . setupCommands . length } setup command${ options . setupCommands . length === 1 ? "" : "s" } `
302+ ? ` + ${ options . setupCommands . length } setup command${
303+ options . setupCommands . length === 1 ? "" : "s"
304+ } `
301305 : "" ) ,
302306 ) ;
303307 console . log ( ) ;
@@ -413,7 +417,9 @@ async function buildSnapshot(
413417 if ( attempt < maxAttempts ) {
414418 const delaySec = retryDelays [ attempt - 1 ] / 1000 ;
415419 console . log (
416- `${ yellow ( "⚠" ) } Snapshot attempt ${ attempt } failed, retrying in ${ delaySec } s...` ,
420+ `${
421+ yellow ( "⚠" )
422+ } Snapshot attempt ${ attempt } failed, retrying in ${ delaySec } s...`,
417423 ) ;
418424 await new Promise ( ( resolve ) =>
419425 setTimeout ( resolve , retryDelays [ attempt - 1 ] )
You can’t perform that action at this time.
0 commit comments