Skip to content

Commit

Permalink
Add dummy maintainer to keep dpkg happy (#1406)
Browse files Browse the repository at this point in the history
After installing the `deb` package many `dpkg` tools started to complain about the missing `Maintainer` field for this package in the system installed package database. This causes spam from cron.

Example:
```
$ LANG=C dpkg-query -s > /dev/null 
dpkg-query: warning: parsing file '/var/lib/dpkg/status' near line 14485 package 'golangci-lint:i386':
 missing 'Maintainer' field
```
  • Loading branch information
porridge committed Oct 5, 2020
1 parent c1d7cfd commit 25fcad6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .goreleaser.yml
Expand Up @@ -104,6 +104,7 @@ nfpms:
package_name: golangci-lint
file_name_template: "{{ .ProjectName }}-{{ .Version }}-{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}"
homepage: https://golangci-lint.run/
maintainer: "golangci-lint Team <golangci-releaser@users.noreply.github.com>"
description: Fast linters Runner for Go
license: GPLv3
formats:
Expand Down

0 comments on commit 25fcad6

Please sign in to comment.