We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c8fedf commit 021649eCopy full SHA for 021649e
GNUmakefile
@@ -1,6 +1,7 @@
1
TEST?=$$(go list ./... |grep -v 'vendor')
2
GOFMT_FILES?=$$(find . -name '*.go' |grep -v vendor)
3
VERSION=$(shell ./scripts/git-version.sh)
4
+export CGO_ENABLED:=0
5
6
default: build
7
@@ -50,7 +51,7 @@ _output/terraform-provider-hcloud_%.zip: NAME=terraform-provider-hcloud_$(VERSIO
50
51
_output/terraform-provider-hcloud_%.zip: DEST=_output/$(NAME)
52
_output/terraform-provider-hcloud_%.zip: bin/%/terraform-provider-hcloud
53
mkdir -p $(DEST)
- cp bin/$*/terraform-provider-hcloud README.md LICENSE $(DEST)
54
+ cp bin/$*/terraform-provider-hcloud README.md CHANGELOG.md LICENSE $(DEST)
55
cd $(DEST) && zip -r ../$(NAME).zip .
56
57
test: fmtcheck
0 commit comments