From 4a8c666794cdcdf59ddde25e2583744ca723e0e5 Mon Sep 17 00:00:00 2001 From: Christophe Dervieux Date: Wed, 21 Jan 2026 12:03:14 +0100 Subject: [PATCH] build, macos - Add typst-gather to signed artifacts --- package/src/macos/installer.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/package/src/macos/installer.ts b/package/src/macos/installer.ts index ca80ced0056..a14a00fe77a 100644 --- a/package/src/macos/installer.ts +++ b/package/src/macos/installer.ts @@ -107,6 +107,16 @@ export async function makeInstallerMac(config: Configuration) { signWithEntitlements.push(join(config.directoryInfo.pkgWorking.bin, "tools", arch, "pandoc")); signWithEntitlements.push(join(config.directoryInfo.pkgWorking.bin, "tools", arch, "typst")); + const typstGatherPath = join( + config.directoryInfo.pkgWorking.bin, + "tools", + arch, + "typst-gather", + ); + if (existsSync(typstGatherPath)) { + signWithEntitlements.push(typstGatherPath); + } + const denoDomPath = join( config.directoryInfo.pkgWorking.bin, "tools",