Merge pull request #153600 from mathieupost/patch-2

golangci-lint: add fish completion
This commit is contained in:
Jörg Thalheim 2022-01-05 16:50:21 +00:00 committed by GitHub
commit edcecad74a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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