From 063d64c0872226b3c84abf89998d49e7085b74f6 Mon Sep 17 00:00:00 2001 From: Hirotaka Tagawa / wafuwafu13 Date: Mon, 7 Nov 2022 23:12:30 +0900 Subject: [PATCH] fix: Set OS_ARCH from GOHOSTOS and GOHOSTARCH (#477) --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index a5fff779..830eb43d 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -10,7 +10,7 @@ NAMESPACE=kreuzwerker NAME=docker BINARY=terraform-provider-${NAME} VERSION=9.9.9 -OS_ARCH=darwin_arm64 +OS_ARCH=$(shell go env GOHOSTOS)_$(shell go env GOHOSTARCH) .PHONY: build test testacc fmt fmtcheck test-compile website-link-check website-lint website-lint-fix