mirror of
https://github.com/enso-org/enso.git
synced 2024-12-22 06:01:35 +03:00
12 lines
243 B
JavaScript
12 lines
243 B
JavaScript
const { beforeSign } = require('./signArchivesMacOs')
|
|
|
|
// ================
|
|
// === Callback ===
|
|
// ================
|
|
|
|
exports.default = async function (context) {
|
|
if (context.electronPlatformName === 'darwin') {
|
|
beforeSign()
|
|
}
|
|
}
|