We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2f98227 + d9a2b3f commit 30733a4Copy full SHA for 30733a4
1 file changed
Makefile
@@ -1,6 +1,6 @@
1
NAME=dbt-cloud
2
-BINARY=terraform-provider-$(NAME)
3
VERSION=$(shell cat VERSION)
+BINARY=terraform-provider-$(NAME)_v$(VERSION)
4
5
default: install
6
@@ -12,8 +12,8 @@ build:
12
go build -ldflags "-w -s" -o $(BINARY) .
13
14
install: build
15
- mkdir -p ~/.terraform.d/plugins/gthesheep/dbt_cloud/0.1/darwin_amd64
16
- mv $(BINARY) ~/.terraform.d/plugins/gthesheep/dbt_cloud/0.1/darwin_amd64/$(BINARY)
+ mkdir -p $(HOME)/.terraform.d/plugins
+ mv ./$(BINARY) $(HOME)/.terraform.d/plugins/$(BINARY)
17
18
docs:
19
go run github.com/hashicorp/terraform-plugin-docs/cmd/tfplugindocs
0 commit comments