Skip to content

Commit

Permalink
Remove unused docs preview tooling
Browse files Browse the repository at this point in the history
The makefile used to have a target for generating docs, but it broke a long time ago. Since no one has fixed it for a long time, it must not be that critical. Removing it, so that it doesn't confuse contributors.
  • Loading branch information
mwudka committed Dec 1, 2022
1 parent 3b02369 commit d6c9e63
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 164 deletions.
10 changes: 1 addition & 9 deletions GNUmakefile
@@ -1,6 +1,5 @@
TEST?=$$(go list ./... |grep -v 'vendor')
GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)
WEBSITE_REPO=github.com/hashicorp/terraform-website
PKG_NAME=tfe

default: terraform-provider-tfe
Expand Down Expand Up @@ -64,12 +63,5 @@ test-compile:
fi
go test -c $(TEST) $(TESTARGS)

website:
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
git clone https://$(WEBSITE_REPO) $(GOPATH)/src/$(WEBSITE_REPO)
endif
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)

.PHONY: build test testacc vet fmt fmtcheck errcheck test-compile website sweep
.PHONY: build test testacc vet fmt fmtcheck errcheck test-compile sweep

155 changes: 0 additions & 155 deletions website/tfe.erb

This file was deleted.

0 comments on commit d6c9e63

Please sign in to comment.