mirror of
https://github.com/mileswolfallen2/OmniEmu2.0.git
synced 2026-09-08 11:23:17 +00:00
still working
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
const { execSync } = require('child_process');
|
||||
|
||||
exports.default = async function (context) {
|
||||
if (context.electronPlatformName !== 'darwin') return;
|
||||
|
||||
const appPath = `${context.appOutDir}/${context.packager.appInfo.productFilename}.app`;
|
||||
console.log(`Ad-hoc signing macOS app at: ${appPath}`);
|
||||
|
||||
try {
|
||||
execSync(`codesign --force --deep -s - "${appPath}"`, { stdio: 'inherit' });
|
||||
console.log('Ad-hoc signing complete');
|
||||
} catch {
|
||||
console.warn('Ad-hoc signing failed (may already be signed or codesign unavailable)');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user