mac signing
This commit is contained in:
parent
430df8ff41
commit
c4b2893db3
5 changed files with 51 additions and 3 deletions
9
build/notarize.js
Normal file
9
build/notarize.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
exports.default = function(context) {
|
||||
const { execSync } = require('child_process')
|
||||
|
||||
if (process.platform === "win32") {
|
||||
console.log('VMP signing start')
|
||||
execSync('python3 -m castlabs_evs.vmp sign-pkg ' + context.appOutDir,{stdio: 'inherit'})
|
||||
console.log('VMP signing complete')
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue