()
| 483 | } |
| 484 | |
| 485 | function getNotarizationOptions(): OsxNotarizeOptions | undefined { |
| 486 | const { |
| 487 | APPLE_ID: appleId, |
| 488 | APPLE_ID_PASSWORD: appleIdPassword, |
| 489 | APPLE_TEAM_ID: teamId, |
| 490 | } = process.env |
| 491 | |
| 492 | return appleId && appleIdPassword && teamId |
| 493 | ? { tool: 'notarytool', appleId, appleIdPassword, teamId } |
| 494 | : undefined |
| 495 | } |
| 496 | |
| 497 | function copyCopilotDependency() { |
| 498 | const currentPlatform = process.platform |