bitwarden-desktop/scripts/after-sign.js

38 lines
1.4 KiB
JavaScript
Raw Normal View History

2019-09-27 18:03:12 +02:00
require('dotenv').config();
2021-09-28 16:51:53 +02:00
const path = require('path');
const fse = require('fs-extra');
2019-09-27 18:03:12 +02:00
const { notarize } = require('electron-notarize');
exports.default = run;
async function run(context) {
2019-09-30 15:32:33 +02:00
console.log('## After sign');
2019-09-27 23:27:57 +02:00
// console.log(context);
2019-09-27 18:03:12 +02:00
2020-09-22 23:02:33 +02:00
const appName = context.packager.appInfo.productFilename;
const appPath = `${context.appOutDir}/${appName}.app`;
2019-09-27 18:03:12 +02:00
const macBuild = context.electronPlatformName === 'darwin';
if (macBuild) {
2021-09-28 16:51:53 +02:00
// Copy Safari plugin to work-around https://github.com/electron-userland/electron-builder/issues/5552
const plugIn = path.join(__dirname, '../PlugIns');
if (fse.existsSync(plugIn)) {
fse.mkdirSync(path.join(appPath, 'Contents/PlugIns'));
fse.copySync(path.join(plugIn, 'safari.appex'), path.join(appPath, 'Contents/PlugIns/safari.appex'));
// Resign to sign safari extension
await context.packager.signApp(context, true);
}
2019-09-27 18:03:12 +02:00
console.log('### Notarizing ' + appPath);
2020-09-22 22:55:40 +02:00
const appleId = process.env.APPLE_ID_USERNAME || process.env.APPLEID;
const appleIdPassword = process.env.APPLE_ID_PASSWORD || `@keychain:AC_PASSWORD`;
2019-09-27 18:03:12 +02:00
return await notarize({
appBundleId: 'com.bitwarden.desktop',
appPath: appPath,
appleId: appleId,
2020-09-22 22:55:40 +02:00
appleIdPassword: appleIdPassword,
2019-09-27 18:03:12 +02:00
});
}
}