Skip to content

Commit

Permalink
update curl command
Browse files Browse the repository at this point in the history
  • Loading branch information
morga471 committed May 7, 2025
1 parent 1bb45bb commit b38093a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions buildspecs/terragrunt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ phases:
echo "Using cached Terraform v$TF_VERSION"
else
echo "Downloading Terraform v$TF_VERSION"
curl -Lo /tmp/terraform.zip "https://releases.hashicorp.com/terraform/${TF_VERSION}/terraform_${TF_VERSION}_linux_amd64.zip"
curl -fsSLo /tmp/terraform.zip "https://releases.hashicorp.com/terraform/${TF_VERSION}/terraform_${TF_VERSION}_linux_amd64.zip"
unzip -o /tmp/terraform.zip -d $TOOLS_DIR/bin/
chmod +x $TOOLS_DIR/bin/terraform
fi
Expand All @@ -43,7 +43,7 @@ phases:
echo "Using cached Terragrunt v$TG_VERSION"
else
echo "Downloading Terragrunt v$TG_VERSION"
curl -Lo $TOOLS_DIR/bin/terragrunt "https://github.com/gruntwork-io/terragrunt/releases/download/v${TG_VERSION}/terragrunt_linux_amd64"
curl -fsSLo $TOOLS_DIR/bin/terragrunt "https://github.com/gruntwork-io/terragrunt/releases/download/v${TG_VERSION}/terragrunt_linux_amd64"
chmod +x $TOOLS_DIR/bin/terragrunt
fi
Expand Down

0 comments on commit b38093a

Please sign in to comment.