Merge pull request #126256 from 06kellyjac/tektoncd-cli

tektoncd-cli: 0.18.0 -> 0.19.0

authored by

Robert Scott and committed by
GitHub
e233cf24 d930bfd5

+4 -3
+4 -3
pkgs/applications/networking/cluster/tektoncd-cli/default.nix
··· 2 2 3 3 buildGoModule rec { 4 4 pname = "tektoncd-cli"; 5 - version = "0.18.0"; 5 + version = "0.19.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "tektoncd"; 9 9 repo = "cli"; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-vZxpfVMUl1EZwCuLlwmSKWrz86aTjWYlAIwO4b9ACqk="; 11 + sha256 = "sha256-fWcHjpfbpj2lrJ0FawhQJuSxAEX1WwOY7m+CAgag4qk="; 12 12 }; 13 13 14 14 vendorSha256 = null; ··· 43 43 installCheckPhase = '' 44 44 runHook preInstallCheck 45 45 $out/bin/tkn --help 46 - $out/bin/tkn version | grep "Client version: ${version}" 46 + # New tkn version functionality outputs empty https://github.com/tektoncd/cli/issues/1389 47 + # $out/bin/tkn version | grep "Client version: ${version}" 47 48 runHook postInstallCheck 48 49 ''; 49 50