Skip to content

Commit 2406539

Browse files
authored
add arm targets (#152)
1 parent 3dbafaa commit 2406539

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

GNUmakefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@ build:
66
# Variables
77
PROVIDER_NAME := coreweave
88
VERSION := 1.0.0
9-
PLUGIN_DIR := $(HOME)/.terraform.d/plugins/terraform.local/coreweave/$(PROVIDER_NAME)/$(VERSION)/linux_amd64
9+
OS := $(shell go env GOOS)
10+
ARCH := $(shell go env GOARCH)
11+
PLUGIN_DIR := $(HOME)/.terraform.d/plugins/terraform.local/coreweave/$(PROVIDER_NAME)/$(VERSION)/$(OS)_$(ARCH)
1012
BINARY_NAME := terraform-provider-$(PROVIDER_NAME)_v$(VERSION)
1113

1214
# This is valuable for limiting the sweeps to known-good resources, and for forcing an ordering.

0 commit comments

Comments
 (0)