From fa0eacedfdb51fbec8ca858bf17402e0a5e3bdb3 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Tue, 23 Oct 2018 20:03:29 -0400 Subject: [PATCH] remove the checksum step --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5c14d71..39c135f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -25,7 +25,6 @@ install: before_script: - export LATEST_TERRAFORM_VERSION=$(curl -s https://api.github.com/repos/hashicorp/terraform/releases/latest | grep tag_name | cut -d '"' -f 4 | cut -c2-) - curl --silent --output terraform.zip https://releases.hashicorp.com/terraform/${LATEST_TERRAFORM_VERSION}/terraform_${LATEST_TERRAFORM_VERSION}_linux_amd64.zip -- sha256sum terraform.zip | grep "84ccfb8e13b5fce63051294f787885b76a1fedef6bdbecf51c5e586c9e20c9b7" - unzip terraform.zip ; rm -f terraform.zip; chmod +x terraform - mkdir -p ${HOME}/bin ; export PATH=${PATH}:${HOME}/bin; mv terraform ${HOME}/bin/ - terraform -v