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