()
| 17 | } |
| 18 | |
| 19 | async function ensureBlobExists() { |
| 20 | try { |
| 21 | await stat(nativeBlobPath()); |
| 22 | } catch { |
| 23 | fail(`SEA blob not found at ${nativeBlobPath()}. Run 02-sea-blob.mjs first.`); |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | async function copyNodeExecutable(target) { |
| 28 | await mkdir(nativeBinDir(target), { recursive: true }); |
no test coverage detected