fix: add maintainer, homepage and categories to DEB/RPM package config (#3096)

Signed-off-by: Brad Erickson <bderickson@gmail.com>
This commit is contained in:
Bradley Erickson
2025-07-27 11:58:28 -07:00
committed by GitHub
parent 10b2bf72b9
commit 322c1e1416
+7 -1
View File
@@ -27,7 +27,7 @@ let cfg = {
CFBundleDocumentTypes: [ CFBundleDocumentTypes: [
{ {
CFBundleTypeName: "Folders", CFBundleTypeName: "Folders",
CFBundleTypeRole: "Viewer", CFBundleTypeRole: "Viewer",
LSHandlerRank: "Alternate", LSHandlerRank: "Alternate",
LSItemContentTypes: ["public.directory", "public.folder"] LSItemContentTypes: ["public.directory", "public.folder"]
} }
@@ -85,6 +85,9 @@ module.exports = {
config: { config: {
name: 'Goose', name: 'Goose',
bin: 'Goose', bin: 'Goose',
maintainer: 'Block, Inc.',
homepage: 'https://block.github.io/goose/',
categories: ['Development']
}, },
}, },
{ {
@@ -92,6 +95,9 @@ module.exports = {
config: { config: {
name: 'Goose', name: 'Goose',
bin: 'Goose', bin: 'Goose',
maintainer: 'Block, Inc.',
homepage: 'https://block.github.io/goose/',
categories: ['Development']
}, },
}, },
], ],