summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/cluster/velero
diff options
context:
space:
mode:
authorVincent Desjardins <vdesjardins@gmail.com>2020-11-15 21:13:06 +0000
committerVincent Desjardins <vdesjardins@gmail.com>2020-11-15 21:24:45 +0000
commit86e6e8164a466b35157170ed41ed55d848c526ee (patch)
treebdd33a0553d4a375001f75115fe92fa23a039409 /pkgs/applications/networking/cluster/velero
parentf3a787f948516dc8f8aa269c90cfe03ceb358465 (diff)
velero: rename completion file names
Prevent collision with Helm package.
Diffstat (limited to 'pkgs/applications/networking/cluster/velero')
-rw-r--r--pkgs/applications/networking/cluster/velero/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/networking/cluster/velero/default.nix b/pkgs/applications/networking/cluster/velero/default.nix
index 0d5835a8cde1..1cc72cb62bc5 100644
--- a/pkgs/applications/networking/cluster/velero/default.nix
+++ b/pkgs/applications/networking/cluster/velero/default.nix
@@ -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; {