mirror of
https://github.com/eugeny/tabby
synced 2025-10-30 05:57:06 +00:00
Update build-windows.mjs
This commit is contained in:
@@ -36,9 +36,9 @@ builder({
|
||||
console.log('Signing', configuration)
|
||||
if (configuration.path) {
|
||||
try {
|
||||
const out = execSync(
|
||||
`smctl sign --keypair-alias=${keypair} --input "${String(configuration.path)}"`
|
||||
)
|
||||
const cmd = `smctl sign --keypair-alias=${keypair} --input "${String(configuration.path)}"`
|
||||
console.log(cmd)
|
||||
const out = execSync(cmd)
|
||||
if (out.toString().includes('FAILED')) {
|
||||
throw new Error(out.toString())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user