From b81b80173359b8f678662086479f9164de7edc33 Mon Sep 17 00:00:00 2001
From: Hector <hector@hjs.dev>
Date: Thu, 22 Jun 2023 16:19:01 +0100
Subject: [PATCH] disable cgo

---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index e3a6ae6..e1854b8 100644
--- a/Makefile
+++ b/Makefile
@@ -34,7 +34,7 @@ check/fmt: download
 # Build project
 .PHONY: build
 build:
-	go build \
+	CGO_ENABLED=0 go build \
 	-ldflags "\
 	-X main.version=${shell git describe --tags} \
 	-X main.commit=${shell git rev-parse HEAD} \