Merge pull request #202553 from jlesquembre/kubectx

kubectx: show version fix
This commit is contained in:
Jonas Heinrich 2022-11-24 11:44:52 +01:00 committed by GitHub
commit 3794e682f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,6 +19,12 @@ buildGoModule rec {
nativeBuildInputs = [ installShellFiles ];
ldflags = [
"-s"
"-w"
"-X main.version=${version}"
];
postInstall = ''
installShellCompletion completion/*
'';