velero: rename completion file names

Prevent collision with Helm package.
This commit is contained in:
Vincent Desjardins 2020-11-15 21:13:06 +00:00
parent f3a787f948
commit 86e6e8164a
No known key found for this signature in database
GPG key ID: FCCA1E430AF624FD

View file

@ -27,9 +27,9 @@ buildGoModule rec {
nativeBuildInputs = [ installShellFiles ];
postInstall = ''
$out/bin/velero completion bash > helm.bash
$out/bin/velero completion zsh > helm.zsh
installShellCompletion helm.{bash,zsh}
$out/bin/velero completion bash > velero.bash
$out/bin/velero completion zsh > velero.zsh
installShellCompletion velero.{bash,zsh}
'';
meta = with stdenv.lib; {