From 3e35d08122c15085194b2082226b7cde0f316548 Mon Sep 17 00:00:00 2001 From: pspiagicw Date: Sat, 13 Apr 2024 05:55:01 +0000 Subject: [PATCH] build: disabled CGO --- groom.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/groom.toml b/groom.toml index a7dc97a..471b8e3 100644 --- a/groom.toml +++ b/groom.toml @@ -12,6 +12,7 @@ command = "go fmt ./..." [task.build] description = "Build the project" command = 'go build -ldflags "$ldflags" -o $name . ' +environment = [ "CGO_ENABLED=1" ] depends = [ "format" ]