diff options
author | Alex Pilon <apilon@hashicorp.com> | 2019-02-22 18:24:22 -0500 |
---|---|---|
committer | Alex Pilon <apilon@hashicorp.com> | 2019-02-22 18:24:22 -0500 |
commit | 07971ca38143c5faf951d152fba370ddcbe26ad5 (patch) | |
tree | 09af1ef91c782de921efc83113907184c8adecee /GNUmakefile | |
parent | 9b6f05970a001f683b9c886c652de81f00cd5f00 (diff) | |
download | terraform-provider-statuscake-07971ca38143c5faf951d152fba370ddcbe26ad5.tar.gz terraform-provider-statuscake-07971ca38143c5faf951d152fba370ddcbe26ad5.tar.zst terraform-provider-statuscake-07971ca38143c5faf951d152fba370ddcbe26ad5.zip |
deps: use go modules for dep mgmt
run go mod tidy
remove govendor from makefile and travis config
set appropriate env vars for go modules
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/GNUmakefile b/GNUmakefile index 98a0985..53139eb 100644 --- a/GNUmakefile +++ b/GNUmakefile | |||
@@ -34,8 +34,6 @@ fmtcheck: | |||
34 | errcheck: | 34 | errcheck: |
35 | @sh -c "'$(CURDIR)/scripts/errcheck.sh'" | 35 | @sh -c "'$(CURDIR)/scripts/errcheck.sh'" |
36 | 36 | ||
37 | vendor-status: | ||
38 | @govendor status | ||
39 | 37 | ||
40 | test-compile: | 38 | test-compile: |
41 | @if [ "$(TEST)" = "./..." ]; then \ | 39 | @if [ "$(TEST)" = "./..." ]; then \ |
@@ -59,5 +57,5 @@ ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO))) | |||
59 | endif | 57 | endif |
60 | @$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME) | 58 | @$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME) |
61 | 59 | ||
62 | .PHONY: build test testacc vet fmt fmtcheck errcheck vendor-status test-compile website website-test | 60 | .PHONY: build test testacc vet fmt fmtcheck errcheck test-compile website website-test |
63 | 61 | ||