()
| 366 | } |
| 367 | |
| 368 | const preExitTasks = async () => { |
| 369 | printWarnings(warnings.warnings); |
| 370 | |
| 371 | if (options.saveLogs) { |
| 372 | const logPath = await saveLogs(deploymentResponse.data.shortCode, image.logs); |
| 373 | log.info(`Build logs have been saved to ${logPath}`); |
| 374 | } |
| 375 | }; |
| 376 | |
| 377 | const imageReference = options.selfHosted |
| 378 | ? `${selfHostedRegistryHost ? `${selfHostedRegistryHost}/` : ""}${image.image}${ |
no test coverage detected
searching dependent graphs…