Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6108c23eb40a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: f5c92bb7fe2f
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 15, 2020

  1. velero: rename completion file names

    Prevent collision with Helm package.
    vdesjardins committed Nov 15, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    vdemeester Vincent Demeester
    Copy the full SHA
    86e6e81 View commit details

Commits on Nov 24, 2020

  1. Merge pull request #103935 from vdesjardins/master

    velero: rename completion file names
    symphorien authored Nov 24, 2020
    Copy the full SHA
    f5c92bb View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/applications/networking/cluster/velero/default.nix
6 changes: 3 additions & 3 deletions pkgs/applications/networking/cluster/velero/default.nix
Original file line number Diff line number Diff line change
@@ -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; {