mirror of
https://github.com/bitsocialnet/5chan.git
synced 2026-08-03 07:41:04 +02:00
* feat(electron): sign and notarize mac release builds when Apple credentials are present * fix(electron): work around codesign PID parsing for digit-leading app name in @electron/notarize codesign interprets a bare '5chan.app' argument as process ID 5, so @electron/notarize 2.5.0's pre-upload signature check fails with 'No such process'. Backport the './' basename prefix from electron/notarize#245 as a yarn patch until forge depends on notarize >= 3.x. * docs(agent-playbooks): record codesign PID parsing surprise for digit-leading app name * fix(ci): keep mac signing env consistent with certificate availability
22 lines
1.2 KiB
Diff
22 lines
1.2 KiB
Diff
diff --git a/lib/check-signature.js b/lib/check-signature.js
|
|
index 324568af71bcc4372c9f959131ecd24122848c86..12f07a866e2c2b049abc222d2c11145b60f0fd72 100644
|
|
--- a/lib/check-signature.js
|
|
+++ b/lib/check-signature.js
|
|
@@ -41,14 +41,14 @@ const spawn_1 = require("./spawn");
|
|
const debug_1 = __importDefault(require("debug"));
|
|
const d = (0, debug_1.default)('electron-notarize');
|
|
const codesignDisplay = (opts) => __awaiter(void 0, void 0, void 0, function* () {
|
|
- const result = yield (0, spawn_1.spawn)('codesign', ['-dv', '-vvvv', '--deep', path.basename(opts.appPath)], {
|
|
+ const result = yield (0, spawn_1.spawn)('codesign', ['-dv', '-vvvv', '--deep', `./${path.basename(opts.appPath)}`], {
|
|
cwd: path.dirname(opts.appPath),
|
|
});
|
|
return result;
|
|
});
|
|
const codesign = (opts) => __awaiter(void 0, void 0, void 0, function* () {
|
|
d('attempting to check codesign of app:', opts.appPath);
|
|
- const result = yield (0, spawn_1.spawn)('codesign', ['-vvv', '--deep', '--strict', path.basename(opts.appPath)], {
|
|
+ const result = yield (0, spawn_1.spawn)('codesign', ['-vvv', '--deep', '--strict', `./${path.basename(opts.appPath)}`], {
|
|
cwd: path.dirname(opts.appPath),
|
|
});
|
|
return result;
|