disable RPM build-ID generation to prevent package conflicts (#5563)

Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
Douwe Osinga
2025-11-04 14:47:44 -05:00
committed by GitHub
parent ccc5858dbd
commit ae7e713d37
+11 -10
View File
@@ -26,12 +26,12 @@ let cfg = {
// Document types for drag-and-drop support onto dock icon // Document types for drag-and-drop support onto dock icon
CFBundleDocumentTypes: [ CFBundleDocumentTypes: [
{ {
CFBundleTypeName: "Folders", CFBundleTypeName: 'Folders',
CFBundleTypeRole: "Viewer", CFBundleTypeRole: 'Viewer',
LSHandlerRank: "Alternate", LSHandlerRank: 'Alternate',
LSItemContentTypes: ["public.directory", "public.folder"] LSItemContentTypes: ['public.directory', 'public.folder'],
} },
] ],
}, },
}; };
@@ -73,8 +73,8 @@ module.exports = {
desktopTemplate: './forge.deb.desktop', desktopTemplate: './forge.deb.desktop',
options: { options: {
icon: 'src/images/icon.png', icon: 'src/images/icon.png',
prefix: '/opt' prefix: '/opt',
} },
}, },
}, },
{ {
@@ -88,8 +88,9 @@ module.exports = {
desktopTemplate: './forge.rpm.desktop', desktopTemplate: './forge.rpm.desktop',
options: { options: {
icon: 'src/images/icon.png', icon: 'src/images/icon.png',
prefix: '/opt' prefix: '/opt',
} fpm: ['--rpm-rpmbuild-define', '_build_id_links none'],
},
}, },
}, },
], ],