golangci-lint: add fish completion

This commit is contained in:
Mathieu Post 2022-01-04 15:20:27 +01:00 committed by GitHub
parent 0a3b1759cf
commit 4606c0e5c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -24,7 +24,7 @@ buildGoModule rec {
];
postInstall = ''
for shell in bash zsh; do
for shell in bash zsh fish; do
HOME=$TMPDIR $out/bin/golangci-lint completion $shell > golangci-lint.$shell
installShellCompletion golangci-lint.$shell
done