Merge pull request #113648 from 06kellyjac/terragrunt

terragrunt: 0.28.6 -> 0.28.7
This commit is contained in:
Fabian Affolter 2021-02-23 10:53:36 +01:00 committed by GitHub
commit 93a812bb9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,7 +2,7 @@
buildGoModule rec {
pname = "terragrunt";
version = "0.28.6";
version = "0.28.7";
src = fetchFromGitHub {
owner = "gruntwork-io";
@ -22,6 +22,14 @@ buildGoModule rec {
"-X main.VERSION=v${version}"
];
doInstallCheck = true;
installCheckPhase = ''
runHook preInstallCheck
$out/bin/terragrunt --help
$out/bin/terragrunt --version | grep "v${version}"
runHook postInstallCheck
'';
meta = with lib; {
homepage = "https://terragrunt.gruntwork.io";
changelog = "https://github.com/gruntwork-io/terragrunt/releases/tag/v${version}";