Skip to content

Commit 03d3ebf

Browse files
committed
fix: add maintainer, homepage and categories to DEB/RPM package config
Add missing package metadata fields to Electron Forge configuration: - maintainer: 'Block, Inc.' - homepage: 'https://block.github.io/goose/' - categories: ['Development'] This resolves the dpkg warning about missing 'Maintainer' field when installing packages with apt: dpkg: warning: parsing file '/var/lib/dpkg/status' near line #### package 'goose': missing 'Maintainer' field
1 parent 2f19082 commit 03d3ebf

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

ui/desktop/forge.config.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,14 +84,20 @@ module.exports = {
8484
name: '@electron-forge/maker-deb',
8585
config: {
8686
name: 'Goose',
87-
bin: 'Goose'
87+
bin: 'Goose',
88+
maintainer: 'Block, Inc.',
89+
homepage: 'https://block.github.io/goose/',
90+
categories: ['Development']
8891
},
8992
},
9093
{
9194
name: '@electron-forge/maker-rpm',
9295
config: {
9396
name: 'Goose',
94-
bin: 'Goose'
97+
bin: 'Goose',
98+
maintainer: 'Block, Inc.',
99+
homepage: 'https://block.github.io/goose/',
100+
categories: ['Development']
95101
},
96102
},
97103
],

0 commit comments

Comments
 (0)