We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dbafaa commit 2406539Copy full SHA for 2406539
GNUmakefile
@@ -6,7 +6,9 @@ build:
6
# Variables
7
PROVIDER_NAME := coreweave
8
VERSION := 1.0.0
9
-PLUGIN_DIR := $(HOME)/.terraform.d/plugins/terraform.local/coreweave/$(PROVIDER_NAME)/$(VERSION)/linux_amd64
+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)
12
BINARY_NAME := terraform-provider-$(PROVIDER_NAME)_v$(VERSION)
13
14
# This is valuable for limiting the sweeps to known-good resources, and for forcing an ordering.
0 commit comments