From 84c9b5639ed7c0d2fc7b2ac768feb436c0b4112a Mon Sep 17 00:00:00 2001 From: Guillaume Berche Date: Sat, 19 Oct 2024 15:20:29 +0200 Subject: [PATCH] CGO_ENABLE=0 in makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0d4808e..e1ffaf4 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ lint: .PHONY: build build: - go build -o ./build/main ./cmd/*.go + CGO_ENABLE=0 go build -o ./build/main ./cmd/*.go .PHONY: run run: