(target)
| 44 | } |
| 45 | |
| 46 | async function injectSeaBlob(target) { |
| 47 | const out = nativeBinPath(target); |
| 48 | const args = [out, 'NODE_SEA_BLOB', nativeBlobPath(), '--sentinel-fuse', SEA_SENTINEL_FUSE]; |
| 49 | if (process.platform === 'darwin') { |
| 50 | args.push('--macho-segment-name', 'NODE_SEA'); |
| 51 | } |
| 52 | await run(postjectPath(), args); |
| 53 | } |
| 54 | |
| 55 | export async function runInjectStep() { |
| 56 | const target = targetTriple(); |
no test coverage detected