1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 14:23:32 +00:00

sign libs too

This commit is contained in:
Kyle Spearrin
2019-09-24 09:21:17 -04:00
parent bc921f9cc3
commit 704c3f56c6

View File

@@ -179,6 +179,7 @@ function distSafariDmg(cb) {
function distSafariApp(cb, subBuildPath, devId) {
const buildPath = paths.dist + 'Safari/' + subBuildPath + '/';
const builtAppexPath = buildPath + 'build/Release/safari.appex';
const builtAppexFrameworkPath = buildPath + 'build/Release/safari.appex/Contents/Frameworks/';
const entitlementsPath = paths.safari + 'safari/safari.entitlements';
return del([buildPath + '**/*'])
@@ -194,6 +195,10 @@ function distSafariApp(cb, subBuildPath, devId) {
stdOutProc(proc);
return new Promise((resolve) => proc.on('close', resolve));
}).then(() => {
const libs = fs.readdirSync(builtAppexFrameworkPath).filter((p) => p.endsWith('.dylib'));
const allItems = libs.concat([builtAppexPath]);
const promises = [];
allItems.forEach ((i) => {
const proc = child.spawn('codesign', [
'--verbose',
'--force',
@@ -203,9 +208,11 @@ function distSafariApp(cb, subBuildPath, devId) {
devId,
'--entitlements',
entitlementsPath,
builtAppexPath]);
i]);
stdOutProc(proc);
return new Promise((resolve) => proc.on('close', resolve));
promises.push(new Promise((resolve) => proc.on('close', resolve)));
});
return Promise.all(promises);
}).then(() => {
return cb;
}, () => {