still working

This commit is contained in:
2026-07-11 00:05:56 -05:00
parent bf90aa0e92
commit c5ad661921
21 changed files with 1507 additions and 146 deletions
+15
View File
@@ -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)');
}
};