We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a5d025 commit 80a336fCopy full SHA for 80a336f
Makefile
@@ -1,8 +1,8 @@
1
-.PHONY: all-release build fmt fmt-go fmt-terraform lint lint-go lint-terraform release test vendor vendor-status vet
+.PHONY: all-release build clean fmt fmt-go fmt-terraform lint lint-go lint-terraform release test vendor vendor-status vet
2
3
ARCH ?= amd64
4
PLATFORM ?= linux
5
-ALL_PLATFORMS := darwin linux
+ALL_PLATFORMS := darwin linux windows
6
BIN := terraform-provider-vultr
7
PKG := github.com/squat/$(BIN)
8
BUILD_IMAGE ?= golang:1.10.0-alpine
@@ -115,3 +115,6 @@ vet:
115
echo "and fix them if necessary before submitting the code for review."; \
116
exit 1; \
117
fi
118
+
119
+clean:
120
+ @rm -rf bin
0 commit comments