From ae7e713d37efb79f4ccc88aa1b323888b1477062 Mon Sep 17 00:00:00 2001 From: Douwe Osinga Date: Tue, 4 Nov 2025 14:47:44 -0500 Subject: [PATCH] disable RPM build-ID generation to prevent package conflicts (#5563) Co-authored-by: Douwe Osinga --- ui/desktop/forge.config.ts | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/ui/desktop/forge.config.ts b/ui/desktop/forge.config.ts index 942e749f86..83f676f28c 100644 --- a/ui/desktop/forge.config.ts +++ b/ui/desktop/forge.config.ts @@ -26,12 +26,12 @@ let cfg = { // Document types for drag-and-drop support onto dock icon CFBundleDocumentTypes: [ { - CFBundleTypeName: "Folders", - CFBundleTypeRole: "Viewer", - LSHandlerRank: "Alternate", - LSItemContentTypes: ["public.directory", "public.folder"] - } - ] + CFBundleTypeName: 'Folders', + CFBundleTypeRole: 'Viewer', + LSHandlerRank: 'Alternate', + LSItemContentTypes: ['public.directory', 'public.folder'], + }, + ], }, }; @@ -73,8 +73,8 @@ module.exports = { desktopTemplate: './forge.deb.desktop', options: { icon: 'src/images/icon.png', - prefix: '/opt' - } + prefix: '/opt', + }, }, }, { @@ -88,8 +88,9 @@ module.exports = { desktopTemplate: './forge.rpm.desktop', options: { icon: 'src/images/icon.png', - prefix: '/opt' - } + prefix: '/opt', + fpm: ['--rpm-rpmbuild-define', '_build_id_links none'], + }, }, }, ],