From 17f7fd1a3a4b68603fdbe71fdd6f1086df049a12 Mon Sep 17 00:00:00 2001 From: Leo Antunes Date: Tue, 26 Nov 2019 20:58:46 +0100 Subject: [PATCH] disable CGO explicitly in makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d3da136..34a549d 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +export CGO_ENABLED=0 + VERSION := $(shell git describe --tags --dirty --always) GOFLAGS := -ldflags "-X main.version=$(VERSION)" -trimpath @@ -16,4 +18,4 @@ e2e: build clean: rm -f wesher wesher-* wesher.sha256sums -.PHONY: build release e2e clean \ No newline at end of file +.PHONY: build release e2e clean