You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
IDE2 needs a way to manually sign the application on M1.
The 'MACOS_FORCE_NOTARIZE' env variable forces the
notarization to proceed if not on a CI.
Signed-off-by: Akos Kitta <[email protected]>
// Hack for manual M1 signing. Set the MACOS_FORCE_NOTARIZE env variable to true, to force notarization when not on a CI. The 'true' is case insensitive.
11
+
console.log(
12
+
`Detected the 'MACOS_FORCE_NOTARIZE' environment variable with '${process.env.MACOS_FORCE_NOTARIZE}' value. Forcing the app notarization, although not on a CI.`
13
+
);
14
+
}else{
15
+
console.log('Skipping notarization: not on CI.');
16
+
return;
17
+
}
8
18
}
9
19
if(process.env.CAN_SIGN==='false'){
10
20
console.log('Skipping the app notarization: certificate was not provided.');
0 commit comments