From c1afe43ec15dcc2cdf05d04aa344840d428a65b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcin=20Wo=C5=BAniak?= Date: Tue, 20 Jun 2023 21:25:15 +0200 Subject: [PATCH] Moved the terraform installing --- .local/bin/Update-pkg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/Update-pkg b/.local/bin/Update-pkg index 02c8761..0bb9a0c 100755 --- a/.local/bin/Update-pkg +++ b/.local/bin/Update-pkg @@ -64,13 +64,13 @@ function install_lazy() { function install_terraform() { # Install terraform and terraform-ls - GO111MODULE=on go install github.com/hashicorp/terraform@latest GO111MODULE=on go install github.com/hashicorp/terraform-ls@latest if [[ "$(uname)" == "Darwin" ]]; then brew install tflint -q brew install tfenv -q TFENV_ARCH=amd64 tfenv install latest else + GO111MODULE=on go install github.com/hashicorp/terraform@latest curl -s https://raw.githubusercontent.com/terraform-linters/tflint/master/install_linux.sh | bash fi }