forked from matrix/element-web
Fix error/exception in electron signing script
'Exception' isn't a thing: Error is
This commit is contained in:
parent
47772f520d
commit
64c23ae18d
|
@ -13,7 +13,7 @@ exports.default = async function(context) {
|
||||||
// from the keychain, so we need to get it from the environment.
|
// from the keychain, so we need to get it from the environment.
|
||||||
const userId = process.env.NOTARIZE_APPLE_ID;
|
const userId = process.env.NOTARIZE_APPLE_ID;
|
||||||
if (userId === undefined) {
|
if (userId === undefined) {
|
||||||
throw new Exception("User ID not found. Set NOTARIZE_APPLE_ID.");
|
throw new Error("User ID not found. Set NOTARIZE_APPLE_ID.");
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log("Notarising macOS app. This may be some time.");
|
console.log("Notarising macOS app. This may be some time.");
|
||||||
|
|
Loading…
Reference in New Issue