From 2705b7ab06d278668d2243a593c0a4c0ceea88b1 Mon Sep 17 00:00:00 2001 From: Jan Sykora Date: Tue, 17 Oct 2023 16:38:01 +0200 Subject: [PATCH] fix: Fix ACC tests --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 55518194..7780869e 100644 --- a/Makefile +++ b/Makefile @@ -5,8 +5,8 @@ default: build init-examples: @echo "==> Creating symlinks for example/ projects to terraform-provider-castai binary"; \ TF_PROVIDER_FILENAME=terraform-provider-castai; \ - GOOS=`go tool dist env | awk -F'=' '/^GOOS/ { print $$2}' | tr -d '";'`; \ - GOARCH=`go tool dist env | awk -F'=' '/^GOARCH/ { print $$2}' | tr -d '";'`; \ + GOOS=`go tool dist env | awk -F'=' '/^GOOS/ { print $$2}' | tr -d '"'`; \ + GOARCH=`go tool dist env | awk -F'=' '/^GOARCH/ { print $$2}' | tr -d '"'`; \ for examples in examples/eks examples/gke examples/aks ; do \ for tfproject in $$examples/* ; do \ TF_PROJECT_PLUGIN_PATH="$${tfproject}/terraform.d/plugins/registry.terraform.io/castai/castai/0.0.0-local/$${GOOS}_$${GOARCH}"; \