File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ TEST?=$$(go list ./... |grep -v 'vendor')
22GOFMT_FILES? =$$(find . -name '*.go' |grep -v vendor )
33WEBSITE_REPO =github.com/hashicorp/terraform-website
44PKG_NAME =sumologic
5- DIR =~/.terraform.d/plugins
5+ PLUGIN_DIR =~/.terraform.d/plugins
66
77default : build
88
@@ -14,11 +14,11 @@ build: fmtcheck
1414 go install
1515
1616install : fmtcheck
17- mkdir -vp $(DIR )
18- go build -o $(DIR ) /terraform-provider-sumologic
17+ mkdir -vp $(PLUGIN_DIR )
18+ go build -o $(PLUGIN_DIR ) /terraform-provider-sumologic
1919
2020uninstall :
21- @rm -vf $(DIR ) /terraform-provider-sumologic
21+ @rm -vf $(PLUGIN_DIR ) /terraform-provider-sumologic
2222
2323errcheck :
2424 @sh -c " '$( CURDIR) /scripts/errcheck.sh'"
@@ -68,4 +68,4 @@ ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
6868endif
6969 @$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)
7070
71- .PHONY : build test testacc vet fmt fmtcheck errcheck lint tools test-compile website website-lint website-test
71+ .PHONY : build install uninstall test testacc vet fmt fmtcheck errcheck lint tools test-compile website website-lint website-test
You can’t perform that action at this time.
0 commit comments