diff options
author | alexandreFre <51956137+alexandreFre@users.noreply.github.com> | 2019-07-08 17:19:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-08 17:19:03 +0200 |
commit | 1b47892a9bef231b3e54c40345ae23a4b3b701e0 (patch) | |
tree | 174caa614a87fcad0b6f87200ee1fd0a90286b2a /GNUmakefile | |
parent | 5b5f8460537ecb489a9f544727513fc9b2d7d532 (diff) | |
parent | 1547d54fbe648764c6a94a0084ca7126c8811668 (diff) | |
download | terraform-provider-mailgun-1b47892a9bef231b3e54c40345ae23a4b3b701e0.tar.gz terraform-provider-mailgun-1b47892a9bef231b3e54c40345ae23a4b3b701e0.tar.zst terraform-provider-mailgun-1b47892a9bef231b3e54c40345ae23a4b3b701e0.zip |
Merge pull request #13 from fretlink/add_github_pages
Add GitHub pages
Diffstat (limited to 'GNUmakefile')
-rw-r--r-- | GNUmakefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index 7750632..c88972d 100644 --- a/GNUmakefile +++ b/GNUmakefile | |||
@@ -46,6 +46,9 @@ test-compile: | |||
46 | fi | 46 | fi |
47 | go test -c $(TEST) $(TESTARGS) | 47 | go test -c $(TEST) $(TESTARGS) |
48 | 48 | ||
49 | website-githubpages: | ||
50 | bash scripts/launch-website.sh | ||
51 | |||
49 | website: | 52 | website: |
50 | ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO))) | 53 | ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO))) |
51 | echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..." | 54 | echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..." |
@@ -60,5 +63,5 @@ ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO))) | |||
60 | endif | 63 | endif |
61 | @$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME) | 64 | @$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME) |
62 | 65 | ||
63 | .PHONY: build test testacc vet fmt fmtcheck errcheck test-compile website website-test | 66 | .PHONY: build test testacc vet fmt fmtcheck errcheck test-compile website website-test website-githubpages |
64 | 67 | ||