We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cfc28f2 commit ad395c1Copy full SHA for ad395c1
1 file changed
scripts/notarize.js
@@ -14,7 +14,8 @@ async function notarizeApp(context) {
14
15
const { APPLE_ID, APPLE_ID_PASSWORD } = process.env
16
if (!APPLE_ID || !APPLE_ID_PASSWORD) {
17
- throw new Error('APPLE_ID and APPLE_ID_PASSWORD env vars are required for notarization.')
+ console.error('APPLE_ID and APPLE_ID_PASSWORD env vars required to notarize. Skipping.')
18
+ return
19
}
20
21
const appOutDir = context.appOutDir
0 commit comments