mirror of
https://github.com/standardnotes/app
synced 2026-01-16 19:04:58 -05:00
11 lines
269 B
JavaScript
11 lines
269 B
JavaScript
exports.default = async function (configuration) {
|
|
if (configuration.path) {
|
|
require('child_process').execSync(
|
|
`smctl sign --keypair-alias=snkeypair --input "${String(configuration.path)}" --verbose`,
|
|
{
|
|
stdio: 'inherit',
|
|
},
|
|
)
|
|
}
|
|
}
|