]> git.immae.eu Git - github/fretlink/terraform-provider-mailgun.git/blobdiff - GNUmakefile
Merge pull request #18 from paulrbr-fl/add-binary-release
[github/fretlink/terraform-provider-mailgun.git] / GNUmakefile
index f5f0c29c086397a8a03abf23f73aee201a5826a6..c88972dd8763fefbc49ecc6686af240b7b1a6db6 100644 (file)
@@ -25,6 +25,9 @@ vet:
                exit 1; \
        fi
 
+shellcheck:
+       shellcheck scripts/*
+
 fmt:
        gofmt -w $(GOFMT_FILES)
 
@@ -43,6 +46,9 @@ test-compile:
        fi
        go test -c $(TEST) $(TESTARGS)
 
+website-githubpages:
+       bash scripts/launch-website.sh
+
 website:
 ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
        echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
@@ -57,5 +63,5 @@ ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
 endif
        @$(MAKE) -C $(GOPATH)/src/$(WEBSITE_REPO) website-provider-test PROVIDER_PATH=$(shell pwd) PROVIDER_NAME=$(PKG_NAME)
 
-.PHONY: build test testacc vet fmt fmtcheck errcheck test-compile website website-test
+.PHONY: build test testacc vet fmt fmtcheck errcheck test-compile website website-test website-githubpages