Skip to content

Commit 6317024

Browse files
committed
Remove website and website-test targets
Remove `website` and `website-test` targets from Makefile Signed-off-by: Ferran Rodenas <[email protected]>
1 parent 39a861e commit 6317024

File tree

1 file changed

+1
-16
lines changed

1 file changed

+1
-16
lines changed

GNUmakefile

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
TEST?=$$(go list ./... |grep -v 'vendor')
22
GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)
3-
WEBSITE_REPO=github.com/hashicorp/terraform-website
43
PKG_NAME=vra
54

65
default: build
@@ -56,18 +55,4 @@ test-compile:
5655
fi
5756
go test -c $(TEST) $(TESTARGS)
5857

59-
website:
60-
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
61-
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
62-
git clone https://$(WEBSITE_REPO) $(GOPATH)/src/$(WEBSITE_REPO)
63-
endif
64-
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)
65-
66-
website-test:
67-
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
68-
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
69-
git clone https://$(WEBSITE_REPO) $(GOPATH)/src/$(WEBSITE_REPO)
70-
endif
71-
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)
72-
73-
.PHONY: build test testacc vet fmt fmtcheck errcheck vendor-status test-compile website website-test
58+
.PHONY: build test testacc vet fmt fmtcheck errcheck vendor-status test-compile

0 commit comments

Comments
 (0)