()
| 405 | } |
| 406 | |
| 407 | function deleteTemporaryRoot(): void { |
| 408 | try { |
| 409 | fs.rmSync(getGlobalVariable('tmp-root'), { |
| 410 | recursive: true, |
| 411 | force: true, |
| 412 | maxRetries: 3, |
| 413 | }); |
| 414 | } catch {} |
| 415 | } |
nothing calls this directly
no test coverage detected