Skip to content

Commit 407e2fc

Browse files
committed
Cleanup docs and build for registry
1 parent 3a0dfef commit 407e2fc

7 files changed

Lines changed: 3 additions & 77 deletions

File tree

.gitignore

Lines changed: 0 additions & 31 deletions
This file was deleted.

.hashibot.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ behavior "pull_request_size_labeler" "size" {
4646

4747
behavior "pull_request_path_labeler" "cross_provider_labels" {
4848
label_map = {
49-
"documentation" = ["website/**/*"]
49+
"documentation" = ["docs/**/*"]
5050
"dependencies" = ["vendor/**/*"]
5151
}
5252
}

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ script:
2525
- make test
2626
- make testacc
2727
- make vet
28-
- make website-test
2928

3029
branches:
3130
only:

GNUmakefile

Lines changed: 1 addition & 17 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=http
54

65
default: build
@@ -45,19 +44,4 @@ test-compile:
4544
fi
4645
go test -c $(TEST) $(TESTARGS)
4746

48-
website:
49-
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
50-
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
51-
git clone https://$(WEBSITE_REPO) $(GOPATH)/src/$(WEBSITE_REPO)
52-
endif
53-
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)
54-
55-
website-test:
56-
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
57-
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
58-
git clone https://$(WEBSITE_REPO) $(GOPATH)/src/$(WEBSITE_REPO)
59-
endif
60-
@$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)
61-
62-
.PHONY: build test testacc vet fmt fmtcheck errcheck vendor-status test-compile website website-test
63-
47+
.PHONY: build test testacc vet fmt fmtcheck errcheck vendor-status test-compile
Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
---
2-
layout: "http"
32
page_title: "HTTP Data Source"
4-
sidebar_current: "docs-http-data-source"
53
description: |-
64
Retrieves the content at an HTTP or HTTPS URL.
75
---
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
---
2-
layout: "http"
3-
page_title: "Provider: HTTP"
4-
sidebar_current: "docs-http-index"
2+
page_title: "HTTP Provider"
53
description: |-
64
The HTTP provider interacts with HTTP servers.
75
---

website/http.erb

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)