From dc15b602677680bdab1579c9eb3407bc64924721 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Fri, 27 Oct 2023 15:33:11 +0200 Subject: [PATCH] Changed the stable version of the terraform MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marcin Woźniak --- .local/bin/Update-pkg | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.local/bin/Update-pkg b/.local/bin/Update-pkg index c2929f5..1b923d4 100755 --- a/.local/bin/Update-pkg +++ b/.local/bin/Update-pkg @@ -81,10 +81,10 @@ function install_terraform_stable() { if [[ "$(uname)" == "Darwin" ]]; then brew install tflint -q brew install tfenv -q - TFENV_ARCH=amd64 tfenv install 1.5.5 - tfenv use 1.5.5 + TFENV_ARCH=amd64 tfenv install 1.5.7 + tfenv use 1.5.7 else - GO111MODULE=on go install github.com/hashicorp/terraform@v1.5.5 + GO111MODULE=on go install github.com/hashicorp/terraform@v1.5.7 curl -s https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash fi }