Skip to content

Commit

Permalink
patch: change the name of the certificate
Browse files Browse the repository at this point in the history
Now that we use the new certs from Apple, we need an Installer cert to sign a pkg.
  • Loading branch information
aethernet committed Oct 2, 2024
1 parent 5565154 commit b614453
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions automation/build-bin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -366,14 +366,14 @@ export async function signFilesForNotarization() {
'-d',
'-f',
'-s',
'Developer ID Application: Balena Ltd (66H43P8FRG)',
'Developer ID Installer: Balena Ltd (66H43P8FRG)',
item.path,
]);
await whichSpawn('codesign', [
'-d',
'-f',
'-s',
'Developer ID Application: Balena Ltd (66H43P8FRG)',
'Developer ID Installer: Balena Ltd (66H43P8FRG)',
item.path,
]);
}
Expand All @@ -387,31 +387,31 @@ export async function signFilesForNotarization() {
'-f',
'--options=runtime',
'-s',
'Developer ID Application: Balena Ltd (66H43P8FRG)',
'Developer ID Installer: Balena Ltd (66H43P8FRG)',
'node_modules/denymount/bin/denymount',
]);
await whichSpawn('codesign', [
'-d',
'-f',
'--options=runtime',
'-s',
'Developer ID Application: Balena Ltd (66H43P8FRG)',
'Developer ID Installer: Balena Ltd (66H43P8FRG)',
'node_modules/denymount/bin/denymount',
]);
console.log('running command:', 'codesign', [
'-d',
'-f',
'--options=runtime',
'-s',
'Developer ID Application: Balena Ltd (66H43P8FRG)',
'Developer ID Installer: Balena Ltd (66H43P8FRG)',
'node_modules/macmount/bin/macmount',
]);
await whichSpawn('codesign', [
'-d',
'-f',
'--options=runtime',
'-s',
'Developer ID Application: Balena Ltd (66H43P8FRG)',
'Developer ID Installer: Balena Ltd (66H43P8FRG)',
'node_modules/macmount/bin/macmount',
]);
}
Expand Down

0 comments on commit b614453

Please sign in to comment.