We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c9d7c6 commit ccaca91Copy full SHA for ccaca91
scripts/electron-builder-wrapper.js
@@ -69,8 +69,10 @@ const calculateTargets = function () {
69
// run in two passes so we can skip signing the appx
70
return ['nsis', 'appx'];
71
case 'darwin':
72
- // run in one pass for slightly better speed
73
- return ['dmg mas'];
+ // Running 'dmg' and 'mas' in the same pass causes electron-builder to skip signing the non-MAS app copy.
+ // Running them as separate passes means they both get signed.
74
+ // Seems like a bug in electron-builder...
75
+ return ['dmg', 'mas'];
76
}
77
throw new Error(`Could not determine targets for platform: ${process.platform}`);
78
};
0 commit comments