We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f2c1af commit d9a2b3fCopy full SHA for d9a2b3f
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